script which chmods other scripts

This commit is contained in:
Timerix22 2022-09-06 15:19:14 +06:00
parent 55ab45eb56
commit 3eb1e82f06

7
chmod_scripts.sh Normal file
View File

@ -0,0 +1,7 @@
#!/bin/bash
SCRIPTS="$(find build_scripts -name '*.sh')"
for F in $SCRIPTS
do
echo $F
chmod +x $F
done