chmod 755 scripts

This commit is contained in:
2025-11-12 13:49:05 +05:00
parent 7197f09ca4
commit fca94ffe4c
18 changed files with 0 additions and 0 deletions

7
chmod_scripts.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env bash
for f in $(find ./ -name '*.sh')
do
chmod a+x "$f"
ls -lh "$f"
done