9 echo "Usage: $0 [--verbose | --changes | --recursive] <files and folders>" >&2
16 -v|
--verbose|
-c|
--changes)
28 -*) echo "Unknown option: $1" >&2
42 fmod
=`umask -S | tr -d x`
44 find "$@" $maxdepth \
( -type f
-exec chmod "${chmod_opt[@]}" "$fmod" {} \; \) -o \( -type d -exec chmod "${chmod_opt[@]}" "$dmod" {} \; \)
53 uchmod - chmod files according to umask
57 uchmod [-v] [-R] [B<path>-1] [B<path>-2] ... [B<path>-n]
61 Change mode bits of files and directories according to umask(1) settings using chmod(1).
62 Use it when file modes were messed up, B<uchmod> change them like mode of newly created files.