Files
lnx-arch/dots/bin/chmodAllSh.sh

13 lines
237 B
Bash
Raw Permalink Normal View History

2024-08-26 15:43:55 -05:00
#!/usr/bin/env bash
# klevstul :: 24.08
this_file_name=`basename "$0"`
echo "$this_file_name"
2025-06-16 20:12:18 -05:00
git_dir=/home/${USER}/syncDir/gitRepos/
find ${git_dir} -type f -iname "*.sh" -exec chmod 755 {} \;
echo "done chmod-ing in '${git_dir}'"