works yay

This commit is contained in:
j 2025-08-15 08:54:26 +10:00
parent bf21c1b469
commit 363cec25b7
9 changed files with 127 additions and 0 deletions

View 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