Add ducks disk hog alias and grc aliases
parent
d43befbc4f
commit
1378f92648
|
|
@ -34,6 +34,9 @@ alias irc="$IRC_CLIENT"
|
||||||
|
|
||||||
alias rb='ruby'
|
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/
|
# Pianobar can be found here: http://github.com/PromyLOPh/pianobar/
|
||||||
|
|
||||||
alias piano='pianobar'
|
alias piano='pianobar'
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
Loading…
Reference in New Issue