Files
lnx-arch/dots/bin/chmodAllSh.sh
2025-06-16 20:12:18 -05:00

13 lines
237 B
Bash
Executable File

#!/usr/bin/env bash
# klevstul :: 24.08
this_file_name=`basename "$0"`
echo "$this_file_name"
git_dir=/home/${USER}/syncDir/gitRepos/
find ${git_dir} -type f -iname "*.sh" -exec chmod 755 {} \;
echo "done chmod-ing in '${git_dir}'"