rwx/sh/alias/chown.sh
2024-11-18 16:17:43 +01:00

15 lines
253 B
Bash

# change owner to root
cor() { sh_a__change_owner_root "${@}"; }
sh_a__change_owner_root() {
chown \
"0:0" \
"${@}"
}
# change owner to user
cou() { sh_a__change_owner_user "${@}"; }
sh_a__change_owner_user() {
chown \
"1000:1000" \
"${@}"
}