Add ducks disk hog alias and grc aliases

pull/311/head
Marty Buchaus 2015-09-05 11:08:15 -05:00
parent d43befbc4f
commit 1378f92648
2 changed files with 22 additions and 0 deletions

View File

@ -34,6 +34,9 @@ alias irc="$IRC_CLIENT"
alias rb='ruby'
# find Space hogs
alias ducks='du -cks * | sort -nr | head -11 |cut -f2- | xargs du -hs'
# Pianobar can be found here: http://github.com/PromyLOPh/pianobar/
alias piano='pianobar'

View File

@ -0,0 +1,19 @@
cite about-alias
about-alias 'grc aliases'
# Generic coloriser found at https://github.com/garabik/grc
# apt-get install grc or for rpm based systems grab the binary or build from repo
#
if [[ -x `which grc` ]]; then
alias grc='grc --colour=auto'
alias ping='grc ping'
alias last='grc last'
alias netstat='grc netstat'
alias traceroute='grc traceroute'
alias diff='grc diff'
alias gcc='grc gcc'
alias configure='grc configure'
alias cvs='grc cvs'
alias ps='grc ps'
alias ifconfig='grc ifconfig'
fi