diff options
author | xyz <gky44px1999@gmail.com> | 2021-10-03 01:41:51 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2021-10-03 01:41:51 -0700 |
commit | 4cfa508c3077006e800a841074363882cb7f3965 (patch) | |
tree | 045a7da2cafc3cd3c31989a8d2d86389eacc2883 /.local/bin/mvtr | |
parent | 0c73a3432b7c6984ad81f9e3bdee711a6832f667 (diff) |
change mind, use -execdir instead of -exec for find
Diffstat (limited to '.local/bin/mvtr')
-rwxr-xr-x | .local/bin/mvtr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/mvtr b/.local/bin/mvtr index b48dcb20..d16f1a8d 100755 --- a/.local/bin/mvtr +++ b/.local/bin/mvtr @@ -4,4 +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 -find "$@" -depth -exec sh -c 'mv -nvT -- "$1" "$(echo "$1" | tr "[:upper:] " "[:lower:]_")"' shell '{}' \; +find "$@" -depth -execdir sh -c 'mv -nvT -- "$1" "$(echo "$1" | tr "[:upper:] " "[:lower:]_")"' shell '{}' \; |