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/chmodef | |
parent | 0c73a3432b7c6984ad81f9e3bdee711a6832f667 (diff) |
change mind, use -execdir instead of -exec for find
Diffstat (limited to '.local/bin/chmodef')
-rwxr-xr-x | .local/bin/chmodef | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.local/bin/chmodef b/.local/bin/chmodef index 6836effd..be9b2934 100755 --- a/.local/bin/chmodef +++ b/.local/bin/chmodef @@ -1,5 +1,5 @@ #!/bin/sh # https://wiki.archlinux.org/title/File_permissions_and_attributes#Numeric_method -find "$@" -type d -exec chmod 755 -- '{}' \+ -find "$@" -type f -exec chmod 644 -- '{}' \+ +find "$@" -type d -execdir chmod 755 -- '{}' \+ +find "$@" -type f -execdir chmod 644 -- '{}' \+ |