######################################################################### # DO NOT CHANGE THIS SECTION # ######################################################################### set BeforeUserCshrc # haven't done user setup #source /etc/csh.cshrc # source central file ######################################################################### # PLACE ANY ADDITIONS BETWEEN THE "if ... then" and "endif" lines # ######################################################################### if (! ${?NoCustomization}) then # create a new path with only valid directories set path = ( ) foreach dir ( /usr/local/j2sdk1.4.0_02/bin /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/sbin /usr/local/teTeX/bin/sparc-sun-solaris2.8 \ /usr/openwin/bin /opt/SUNWspro/bin /usr/perl5/bin \ /opt/gnome-2.0/bin /usr/local/matlab5/bin /usr/ucb \ ~/bin . ) if ( -d $dir ) set path = ( $path $dir ) end # "." ALWAYS COMES LAST IN PATH LIST! # get the host's name if (! $?HOST) then if (-f /bin/uname) then setenv HOST `/bin/uname -n` else setenv HOST `/bin/hostname` endif endif ### other ### umask 022 # file mask 022 => disallow write by others ### set ### unset autologout set noclobber # don't overwrite existing files set history = 100 # length of history memory set ignoreeof # ignore ^D as exit (use "logout" instead) set prompt = "%B%n:%~%#%b " # set prompt = "[\!] `whoami`@`hostname` >> " # set filec # filename completion is default in Linux if ( ! $?user ) set user = ${LOGNAME} ### setenv ### setenv MANPATH /usr/man:/usr/man/preformat:/usr/openwin/man:/usr/local/man:/:/opt/gnome-2.0/man:/opt/SUNWspro/man: setenv MINICOM "-c on" setenv PRINTER icl2 setenv NENSCRIPT "-2Grt4" setenv MPAGE "-2 -oml70t" setenv LD_LIBRARY_PATH /usr/lib:/usr/ccs/lib:/usr/ucblib:/usr/openwin/lib:/usr/dt/lib:/usr/local/lib:/opt/gnome-2.0/lib ### aliases ### if ( -f ~/.aliases ) source ~/.aliases alias edit 'emacs -nw' alias ls 'ls -FC' alias rm 'rm -i' alias matlab6 /usr/local/matlab6/bin/matlab endif # if (! ${?NoCustomization}) then ###############################