sfbs/fix-repo.sh
2024-05-23 20:21:18 +02:00

8 lines
No EOL
142 B
Bash
Executable file

#!/bin/sh
for f in $(find . -iname '*.sh' -type 'f'); do
if ! [ -x $f ]; then
echo "fixing $f..."
chmod +x $f
fi
done