Added global aliases to process output of orev command.

This commit is contained in:
Michael Nikitochkin 2013-04-16 10:29:34 +03:00
commit 6f34c88c42

View file

@ -22,3 +22,9 @@ alias sl=ls # often screw this up
alias afind='ack-grep -il' alias afind='ack-grep -il'
# Output aliases
alias -g M='|more'
alias -g L='|less'
alias -g H='|head'
alias -g T='|tail'
alias -g N='2>/dev/null'