Skip to content

Instantly share code, notes, and snippets.

@goozbach
Created April 1, 2010 19:39
Show Gist options
  • Save goozbach/352262 to your computer and use it in GitHub Desktop.
Save goozbach/352262 to your computer and use it in GitHub Desktop.
# ls color is different on darwin than linux
myvar=$(uname | tr 'A-Z' 'a-z')
case $myvar in
linux)
alias ls='ls -F --color'
;;
darwin)
alias ls='ls -F -G'
export LSCOLORS="gxfxbxdxcxegedabagacad"
;;
sunos)
alias ls='ls -F'
;;
*)
alias ls='ls'
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment