rwx/sh/alias/chmod.sh
2025-07-27 20:49:16 +02:00

25 lines
278 B
Bash

# chmod
# change mode
#| chmod
#= cm
rwx_change_mode() {
chmod \
"${@}"
}
# change mode to directory
#= cmd
rwx_change_mode_directory() {
rwx_change_mode \
"755" \
"${@}"
}
# change mode to file
#= cmf
rwx_change_mode_file() {
rwx_change_mode \
"644" \
"${@}"
}