rwx/sh/cmd/chmod.sh

14 lines
126 B
Bash
Raw Normal View History

2024-11-16 14:04:50 +01:00
# change mode to directory
2024-11-16 14:03:13 +01:00
cmd() {
chmod \
"755" \
"${@}"
}
2023-05-09 22:02:34 +02:00
2024-11-16 14:04:50 +01:00
# change mode to file
2024-11-16 14:03:13 +01:00
cmf() {
chmod \
"644" \
"${@}"
}