Skip to content

Instantly share code, notes, and snippets.

@azyu
Created February 5, 2014 13:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azyu/8823857 to your computer and use it in GitHub Desktop.
Save azyu/8823857 to your computer and use it in GitHub Desktop.
~/.bash_profile
case "${OSTYPE}" in
darwin*)
alias ls="ls -G"
alias ll="ls -lG"
alias la="ls -laG"
;;
linux*)
alias ls='ls --color'
alias ll='ls -l --color'
alias la='ls -la --color'
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment