8 lines
148 B
Bash
8 lines
148 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for s in $(find tools/ -type f -iname "*.sh"); do
|
||
|
[ -x $s ] && continue
|
||
|
echo "fixing permissions for $s..."
|
||
|
chmod +x $s
|
||
|
done
|