works yay
This commit is contained in:
parent
bf21c1b469
commit
363cec25b7
9 changed files with 127 additions and 0 deletions
8
general-scripts/utils/make-all-executable.sh
Executable file
8
general-scripts/utils/make-all-executable.sh
Executable file
|
@ -0,0 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
FILE_EXTENSIONS=("sh" "py")
|
||||
|
||||
for EXT in "${FILE_EXTENSIONS[@]}"
|
||||
do
|
||||
find $SCRIPTS_DIR -type f -iname "*.${EXT}" -exec chmod +x {} \;
|
||||
done
|
Loading…
Add table
Add a link
Reference in a new issue