]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh/rc: add A1, A2, A3 aliases for awk '{ print $X }'
authorSimon Ruderich <simon@ruderich.org>
Thu, 3 Apr 2014 08:13:52 +0000 (10:13 +0200)
committerSimon Ruderich <simon@ruderich.org>
Tue, 29 Apr 2014 13:22:35 +0000 (15:22 +0200)
zsh/rc

diff --git a/zsh/rc b/zsh/rc
index 065ab1f45cca89228eb76f59cb3a473f41d8ee2d..04c99f2ed673da450287f4572a182579f5887b0d 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -829,6 +829,9 @@ alias -g LS='2>&1 | less -S' # -S prevents wrapping of long lines
 alias -g D='2>&1 | colordiff | less'
 # Global aliases for often used commands.
 alias -g A='| awk'
+alias -g A1="| awk '{ print \$1 }'"
+alias -g A2="| awk '{ print \$2 }'"
+alias -g A3="| awk '{ print \$3 }'"
 alias -g G='| grep'
 alias -g H='| head'
 alias -g P='| perl'