9 lines
177 B
Bash
Executable File
9 lines
177 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# klevstul :: 24.08
|
|
|
|
this_file_name=`basename "$0"`
|
|
echo "$this_file_name"
|
|
|
|
find /home/${USER}/syncDir/gitRepos/ -type f -iname "*.sh" -exec chmod +x {} \;
|