aliases: Correct chmod alias comment permissions

This commit is contained in:
William Sawyer
2023-12-19 00:28:40 +10:00
parent d2163a6b49
commit 4de61d8ad9

View File

@@ -4,8 +4,8 @@
alias perm='stat --printf "%a %n \n "' # perm: Show permission of target in number
alias 000='chmod 000' # ---------- (nobody)
alias 640='chmod 640' # -rw-r----- (user: rw, group: r, other: -)
alias 644='chmod 644' # -rw-r--r-- (user: rw, group: r, other: -)
alias 755='chmod 755' # -rwxr-xr-x (user: rwx, group: rx, other: x)
alias 644='chmod 644' # -rw-r--r-- (user: rw, group: r, other: r)
alias 755='chmod 755' # -rwxr-xr-x (user: rwx, group: rx, other: rx)
alias 775='chmod 775' # -rwxrwxr-x (user: rwx, group: rwx, other: rx)
alias mx='chmod a+x' # ---x--x--x (user: --x, group: --x, other: --x)
alias ux='chmod u+x' # ---x------ (user: --x, group: -, other: -)