sh/bash/alias/chmod.sh

10 lines
112 B
Bash
Raw Normal View History

2023-05-09 20:02:34 +00:00
# change mode as directory
2023-05-14 14:31:09 +00:00
alias cmd="\
chmod \"755\" \
"
2023-05-09 20:02:34 +00:00
# change mode as file
2023-05-14 14:31:09 +00:00
alias cmf="\
chmod \"644\" \
"