15 lines
241 B
Bash
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" \
|
|
"${@}"
|
|
}
|