colour for user

If you use tcsh just $ setenv CLICOLOR for colored ls output.
 
i already make for root login , and now i want to make for user login , so is there any automatic code to make it happend ?
 
The man file says that /etc/csh.cshrc is executed for every csh instance, so setting the environment for all users should be done there (for (ba)sh it would be "export CLICOLOR=yes" in /etc/profile, I guess).
 
i found this message -bash: export CLICOLOR=yes: command not found
when i edited /etc/profile
 
Works for me, with the intended result. In bash and sh. Even
Code:
export CLICOLOR=
works. It should also work on the command line itself.
 
Back
Top