dotfiles/.local/bin/scripts/own
2023-04-06 16:21:36 +02:00

8 lines
244 B
Bash
Executable file

#!/bin/sh -e
# Recursively take ownership of the given files or the current directory
u=$USER
case "$1" in
(+*) sudo chmod -R "$1" "${@:-.}"; shift; break;;
(-*) u="${1#-}"; shift; break;;
esac
sudo chown -R --preserve-root "$u:$u" "${@:-.}"