13 lines
237 B
Bash
Executable File
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}'"
|