11 lines
116 B
Bash
11 lines
116 B
Bash
# change mode as directory
|
|
alias cmd="\
|
|
chmod \
|
|
\"755\" \
|
|
"
|
|
|
|
# change mode as file
|
|
alias cmf="\
|
|
chmod \
|
|
\"644\" \
|
|
"
|