sh/shell/alias/chmod.sh

12 lines
116 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="\
2023-05-18 11:25:21 +00:00
chmod \
\"755\" \
2023-05-14 14:31:09 +00:00
"
2023-05-09 20:02:34 +00:00
# change mode as file
2023-05-14 14:31:09 +00:00
alias cmf="\
2023-05-18 11:25:21 +00:00
chmod \
\"644\" \
2023-05-14 14:31:09 +00:00
"