Add color to your ls command, that looks great for viewing files and folders. To achieve this effect you have to edit your .bash_profile file.
1 2 3 | $ vi ~/.bash_profile |
Now, add the following two lines:
1 2 3 4 | export CLICOLOR=1 export LSCOLORS=ExFxCxDxBxegedabagacad |
You can use this if you are using a black background:
1 2 3 | export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx |
Save and exit form editor and use source command to reflect changes or restart your terminal.
1 2 3 | $ source ~/.bash_profile |