diff options
Diffstat (limited to 'home-manager/config/lf/commands/scripts/chmod')
-rwxr-xr-x | home-manager/config/lf/commands/scripts/chmod | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/home-manager/config/lf/commands/scripts/chmod b/home-manager/config/lf/commands/scripts/chmod new file mode 100755 index 00000000..b1682090 --- /dev/null +++ b/home-manager/config/lf/commands/scripts/chmod @@ -0,0 +1,14 @@ +#! /usr/bin/env dash +# shellcheck disable=SC2086 +# shellcheck source=/dev/null +# . ~/.local/lib/shell/lib +. %SHELL_LIBRARY_PATH + +readp "Mode Bits: " bits + +while read -r file; do + chmod "$bits" "$file" +done < "$(tmp "echo $fx")" + +lf -remote 'send reload' +# vim: ft=sh |