dotfiles/.local/bin/scripts/chexec

4 lines
127 B
Plaintext
Raw Normal View History

2023-04-10 16:31:48 +00:00
#!/bin/sh -ex
# Set exec flag on all files that should be executable
2023-04-21 07:27:19 +00:00
find -maxdepth 4 -name "*.sh" "$@" -exec chmod -v +x {} +