From: Simon Ruderich Date: Wed, 29 Aug 2012 16:27:44 +0000 (+0200) Subject: zsh/rc: Update documentation for global aliases. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=b185107c9c6015e9f10515838688f8f93c386cba;p=config%2Fdotfiles.git zsh/rc: Update documentation for global aliases. --- diff --git a/zsh/rc b/zsh/rc index bf314ad..8cc5d4d 100644 --- a/zsh/rc +++ b/zsh/rc @@ -625,10 +625,11 @@ fi # Make sure aliases are expanded when using sudo. alias sudo='sudo ' -# Global aliases for often used commands in the command line. +# Global aliaes for often used redirections. alias -g E='2>&1' alias -g L='2>&1 | less' alias -g D='2>&1 | colordiff | less' +# Global aliases for often used commands in the command line. alias -g A='| awk' alias -g G='| grep' alias -g H='| head'