Enable Color "ls" command in OSX Terminal
To enable the equivalent of "ls --color" from linux in the OSX terminal you just need to alias "ls -G".
For a normal user create and edit the following file: .bash_profile
alias ls='ls -G'
For a normal user create and edit the following file: .bash_profile
alias ls='ls -G'
Comments