rwx/sh/alias/chown.sh
Marc Beninca 020aaa0b9a
All checks were successful
/ job (push) Successful in 1m12s
refactor(history): commit development branch
new development branch from root commit
2025-02-10 21:54:51 +01:00

15 lines
241 B
Bash

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