This commit is contained in:
Marc Beninca 2024-11-16 14:03:13 +01:00
parent 895c169599
commit 97389ceef7
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -1,11 +1,13 @@
# change mode as directory # change mode as directory
alias cmd="\ cmd() {
chmod \ chmod \
\"755\" \ "755" \
" "${@}"
}
# change mode as file # change mode as file
alias cmf="\ cmf() {
chmod \ chmod \
\"644\" \ "644" \
" "${@}"
}