8 lines
104 B
Bash
Executable File
8 lines
104 B
Bash
Executable File
#!/bin/bash
|
|
SCRIPTS="$(find ./ -name '*.sh')"
|
|
for F in $SCRIPTS
|
|
do
|
|
echo "$F"
|
|
chmod +x "$F"
|
|
done
|