This commit is contained in:
Marc Beninca 2024-11-18 16:11:50 +01:00
parent 22c9a66162
commit 4cbdeae4e9
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

13
sh/alias/chmod.sh Normal file
View file

@ -0,0 +1,13 @@
# change mode to directory
cmd() {
chmod \
"755" \
"${@}"
}
# change mode to file
cmf() {
chmod \
"644" \
"${@}"
}