# #
# stdusr csh startup file

set uname = `/bin/uname`
set osver = `/bin/uname -r`
umask 022
set ignoreeof                           # don't let control-d logout
set filec				# allow for file completetion
set notify				# notify me of new mail
set history=100                          # save last 50 commands
set savehist=100

#look for and execute common chsrc script if exists
if ( -r /etc/common.cshrc ) then
    source /etc/common.cshrc
endif
# Special case out the "speciality" machines which you may have access to.

#set standard prompt
set prompt="`hostname` ! > "
#see if we are on sasn100 (solaris 5.5)
if ( "$uname" == "SunOS" ) then
# Welcome to a Sun
if ( "$osver" =~ 5.* ) then
    set path=(/usr/sbin /usr/lib /usr/bin /etc $HOME/bin.sol \
    /usr/local/intel/tflop/current/tflops/bin.solaris \
    /usr/community/bin /usr/community/gnu /usr/openwin/bin \
    /usr/local/bin /usr/ccs/bin /opt/SUNWspro/bin $path .)
    setenv LD_LIBRARY_PATH /opt/SUNWspro/lib:/usr/ucblib:/usr/openwin/lib:/usr/lib/X11:/usr/lib
    #set crosscompiler env variable
    setenv TFLOPS_XDEV /usr/local/intel/tflop/current
    alias ll 'ls -l'
    #check if we are running tcsh
    if ($?version) then
     if ("$version" =~ tcsh*) then
      set prompt="%m %~ %! > "
      set histfile="$HOME/.thistory"
     endif
    endif
 else
 #Is there anything else on the lan? Don't think so.
 echo "#Dont have anything for a sun4 machine"
 endif
else if ( "$uname" == "TFLOPS O/S" ) then
#assume we are on janus

# Now run through the common procedures that are common to all users.
# If you don't like what I do in particular sections, set the appropriate
# variable above to 'no' and do it yourself.

set path=(/usr/bin /usr/sbin /sbin . /cougar/bin /usr/X11R6/bin \
     /usr/community/bin /usr/local/bin /usr/gnu/bin \
          $HOME/bin .)
setenv MANPATH /usr/man:/cougar/man:/usr/share/man:/usr/gnu/man

alias cd	"cd \!*;pwd"
alias pwd	'echo $cwd'

else
# Welcome to an unknown Universe
echo "# Welcome to an unknown Universe"
endif

if ( -r $HOME/.alias ) then
    source $HOME/.alias
endif
if ("`hostname`" == "janus") then
   if ("$shell" == "/Net/local/bin/tcsh") then
     set prompt="%m %~ %! > "
     set histfile="$HOME/.thistory"
   endif
endif
#

Acknowledgement and Disclaimer