From 73269b457f0ed29c7a9eb5cc2ce8c384078effc4 Mon Sep 17 00:00:00 2001 From: Mathias Bynens Date: Sat, 22 Oct 2011 12:58:46 +0300 Subject: Steal some nifty aliases from @janmoesen/tilde. --- .aliases | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.aliases b/.aliases index 6e64965..8836342 100644 --- a/.aliases +++ b/.aliases @@ -10,6 +10,14 @@ alias la="ls -Gla" # List only directories alias lsd='ls -l | grep "^d"' +# Always use color output for `ls` +if [[ "$OSTYPE" =~ ^darwin ]]; then + alias ls="command ls -G" +else + alias ls="command ls --color" + export LS_COLORS='no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.ogg=01;35:*.mp3=01;35:*.wav=01;35:' +fi + # Undo a `git push` alias undopush="git push -f origin HEAD^:master" @@ -30,7 +38,10 @@ alias httpdump="sudo tcpdump -i en1 -n -s 0 -w - | grep -a -o -E \"Host\: .*|GET alias server="open http://localhost:8080/ && python -m SimpleHTTPServer 8080" # Canonical hex dump; some systems have this symlinked -type -t hd > /dev/null || alias hd='hexdump -C' +type -t hd > /dev/null || alias hd="hexdump -C" + +# OS X has no `md5sum`, so use `md5` as a fallback +type -t md5sum > /dev/null || alias md5sum="md5" # Trim new lines and copy to clipboard alias c="tr -d '\n' | pbcopy" -- cgit v1.2.3