# # This is the default standard .login provided to csh users. # They are expected to edit it to meet their own needs. # # The commands in this file are executed when a csh user first # logs in. This file is processed after .cshrc. # # $Revision: 1.1 $ # # do not execute in PBS environment if (! $?PBS_ENVIRONMENT) then if (! $?ENVONLY) then # Set interrupt character to Ctrl-c and do clean backspacing. if (-t 0) then stty intr '^C' echoe endif # Set the TERM environment variable eval `tset -s -Q` endif # Set the default X server. if ($?DISPLAY == 0) then if ($?REMOTEHOST) then setenv DISPLAY ${REMOTEHOST}:0 else setenv DISPLAY :0 endif endif # # Set X-Window title @ havexwindows=($term == "xterm") if ($havexwindows) then ~/bin/set_xterm_title `hostname` endif endif