script which chmods other scripts
This commit is contained in:
parent
55ab45eb56
commit
3eb1e82f06
7
chmod_scripts.sh
Normal file
7
chmod_scripts.sh
Normal file
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
SCRIPTS="$(find build_scripts -name '*.sh')"
|
||||
for F in $SCRIPTS
|
||||
do
|
||||
echo $F
|
||||
chmod +x $F
|
||||
done
|
||||
Loading…
Reference in New Issue
Block a user