ambevar-dotfiles/.local/bin/sanitize

27 lines
510 B
Plaintext
Raw Normal View History

#!/bin/sh
usage () {
cat <<EOF>&2
Usage: ${0##*/} FOLDERS
2013-06-25 22:56:10 +02:00
Set file/directory owner and permissions according to current umask for current
2014-08-19 11:06:03 +02:00
user.
2013-06-25 22:56:10 +02:00
EOF
}
[ $# -eq 0 ] && usage && exit 1
[ "$1" = "-h" ] && usage && exit
[ "$1" = "--" ] && shift
2013-06-25 22:56:10 +02:00
FMASK=$(umask -S | sed 's/x//g')
DMASK=$(umask -S)
[ -z "$UID" ] && UID=$(id -u)
[ -z "$GID" ] && GID=$(id -g)
for i ; do
2016-06-23 23:18:36 +02:00
find "$i" -exec chown -R "$UID:$GID" {} \;
find "$i" -type d -exec chmod "$DMASK" {} \;
find "$i" -type f -exec chmod "$FMASK" {} \;
done