From cdcdb977280d1acaae130a3937b3e85b67623b87 Mon Sep 17 00:00:00 2001 From: xyz Date: Thu, 9 Sep 2021 23:55:59 -0700 Subject: find change --execdir to --exec, --execdir not posix compliant? --- .local/bin/mvtr | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to '.local/bin/mvtr') diff --git a/.local/bin/mvtr b/.local/bin/mvtr index 7744da51..dcea8409 100755 --- a/.local/bin/mvtr +++ b/.local/bin/mvtr @@ -4,5 +4,4 @@ # link also show perl-rename approach # https://linuxconfig.org/rename-all-files-from-uppercase-to-lowercase-characters # if only change ' ' to '_' `rename` might be sufficient, for upper to lower case might need perl-rename if want concise -# shellcheck suggest use $1 for sh -c for better error messaging? see SC2156 -find "$@" -depth -execdir sh -c 'mv -nvT -- "$1" "$(echo "$1" | tr "[:upper:] " "[:lower:]_")"' sh '{}' \; +find "$@" -depth -exec sh -c 'mv -nvT -- "$1" "$(echo "$1" | tr "[:upper:] " "[:lower:]_")"' sh '{}' \; -- cgit v1.2.3-70-g09d2