From: martin f. krafft Date: Wed, 3 Aug 2011 07:49:16 +0000 (+0200) Subject: symbolic chmod aliases X-Git-Url: https://git.madduck.net/etc/zsh.git/commitdiff_plain/5ae01fb9757e470c34d5d6e2c71e0c669c2ff434 symbolic chmod aliases --- diff --git a/.zsh/zshrc/30_aliases b/.zsh/zshrc/30_aliases index a4f8a50..ca20471 100644 --- a/.zsh/zshrc/30_aliases +++ b/.zsh/zshrc/30_aliases @@ -131,6 +131,13 @@ compdef _pids of function psgrep() { ps aux | grep "[${1[1]}]${1[2,-1]}" } +alias rw-='chmod 600' +alias rwx='chmod 700' +alias r--='chmod 644' +alias r-x='chmod 755' +alias r-s='chmod 2755' +alias rws='chmod 2775' + alias bofh='fortune bofh-excuses' autoload -U baseconv