summaryrefslogtreecommitdiff
path: root/tcsh/csh.cshrc
blob: 22754634c289889126da2a50ebefaf4899f096e3 (plain)
    1 #
    2 # /etc/csh.cshrc: tcsh(1) configuration
    3 #
    4 
    5 if ( "$uid" == "0" ) then
    6 	setenv PATH "/sbin:/usr/sbin:/bin:/usr/bin:/opt/bin"
    7 else
    8 	setenv PATH "/bin:/usr/bin:/opt/bin"
    9 endif
   10 
   11 if ( ! -f ~/.inputrc ) then
   12 	setenv INPUTRC "/etc/inputrc"
   13 endif
   14 
   15 setenv LESSCHARSET "latin1"
   16 setenv LESS "-R"
   17 setenv CHARSET "ISO-8859-1"
   18 set prompt="%B$ "
   19 
   20 umask 022
   21 
   22 # End of file

Generated by cgit