From 22fd8d582c4e2e6c0cb32d15526e7d226b59b568 Mon Sep 17 00:00:00 2001 From: Gurkirat Singh Date: Sun, 13 Mar 2022 04:36:02 +0530 Subject: [PATCH] fix (lint_clean_files): xargs conflict warning --- lint_clean_files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lint_clean_files.sh b/lint_clean_files.sh index 26650b16..2edef579 100755 --- a/lint_clean_files.sh +++ b/lint_clean_files.sh @@ -10,7 +10,7 @@ mapfile -t FILES < <( cat clean_files.txt \ | grep -v -E '^\s*$' \ | grep -v -E '^\s*#' \ - | xargs -n1 -I{} find "{}" -type f + | xargs --replace -n1 find "{}" -type f ) # We clear the BASH_IT variable to help the shellcheck checker