FreeBSD uses csh as its default shell (I personally prefer tcsh which is available), but one thing one might notice is that ll (or ls -l) is not colorized. This can be corrected by adding the following to the .cshrc file in your home directory (or root directory):
setenv CLICOLOR 1
Once you do this, run ll or ls -l and you will see colorized directories, symlinks, etc.
Comments
Leave a Reply
You must be logged in to post a comment.
Another option is to edit the ll alias in the .cshrc to include G:
alias ll ls -lAFG
This too will colorize ll output.