cbuild/include/chmod_scripts.sh

8 lines
97 B
Bash

#!/usr/bin/env bash
for f in $(find ./ -name '*.sh')
do
chmod a+x "$f"
ls -lh "$f"
done