# This is the default standard .cshrc provided to csh users. # They are expected to edit it to meet their own needs. # # The commands in this file are executed each time a new csh shell # is started. # # $Revision: 1.7 $ # # Modify path for "modules", to use newer languages. if (-f /opt/modules/modules/init/csh) then source /opt/modules/modules/init/csh module load modules nqe mpt endif # Append to path set path = ( $path /usr/local/bin ) # list directories in columns alias ls 'ls -C' alias lf ls -lF alias po popd alias pu pushd alias di dirs # Remember last 100 commands set history = 100 # For interactive shells, set the prompt to show the host name and event number. if ( (! $?ENVONLY) && $?prompt ) then if ( -o /bin/su ) then set prompt="`/usr/bsd/hostname -s` \!# " else set prompt="`/usr/bsd/hostname -s` \!% " endif endif