2 # exeperm sets the permissions to an executable value, as for a directory of
3 # binary files. (rwxr-xr-x for both directories and files)
7 if [ -z "${args[*]}" ]; then
8 echo "no arguments provided."
12 for (( i=0; i < ${#args[*]}; i++ )); do
14 # echo "curr is $current"
16 find -L "$current" -type d -exec chmod 755 {} ';'
17 # >/dev/null 2>/dev/null
18 find -L "$current" -type f -exec chmod 755 {} ';'
19 # >/dev/null 2>/dev/null