diff options
author | Mathias Bynens <mathias@qiwi.be> | 2011-10-22 12:58:46 +0300 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2011-10-22 12:58:46 +0300 |
commit | 73269b457f0ed29c7a9eb5cc2ce8c384078effc4 (patch) | |
tree | 4adb52b9f1ecd3e9e49b2ddcfd0726cb549fa7a3 /.aliases | |
parent | cb8bc6e5b16bd705bacd2b0bf609fff850a5d9e9 (diff) | |
download | dotfiles-73269b457f0ed29c7a9eb5cc2ce8c384078effc4.tar.gz dotfiles-73269b457f0ed29c7a9eb5cc2ce8c384078effc4.tar.bz2 dotfiles-73269b457f0ed29c7a9eb5cc2ce8c384078effc4.zip |
Steal some nifty aliases from @janmoesen/tilde.
Diffstat (limited to '.aliases')
-rw-r--r-- | .aliases | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -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" |