home *** CD-ROM | disk | FTP | other *** search
/ vis-ftp.cs.umass.edu / vis-ftp.cs.umass.edu.tar / vis-ftp.cs.umass.edu / pub / .login < prev    next >
Text File  |  1996-04-17  |  597b  |  28 lines

  1. #
  2. # This is the default standard .login provided to csh users.
  3. # They are expected to edit it to meet their own needs.
  4. #
  5. # The commands in this file are executed when a csh user first
  6. # logs in.  This file is processed after .cshrc.
  7. #
  8. # $Revision: 1.8 $
  9. #
  10.  
  11. # Set the interrupt character to Ctrl-c and do clean backspacing.
  12. if (-t 0) then
  13.     stty intr '^C' echoe 
  14. endif
  15.  
  16. # Set the TERM environment variable
  17. eval `tset -s -Q`
  18.  
  19. # Set the default X server.
  20. if ($?DISPLAY == 0) then
  21.     if ($?REMOTEHOST) then
  22.         setenv DISPLAY ${REMOTEHOST}:0
  23.     else
  24.         setenv DISPLAY :0
  25.     endif
  26. endif
  27.  
  28.