sh/shell/alias/chmod.sh
2024-11-16 14:04:50 +01:00

13 lines
126 B
Bash

# change mode to directory
cmd() {
chmod \
"755" \
"${@}"
}
# change mode to file
cmf() {
chmod \
"644" \
"${@}"
}