home *** CD-ROM | disk | FTP | other *** search
/ vis-ftp.cs.umass.edu / vis-ftp.cs.umass.edu.tar / vis-ftp.cs.umass.edu / pub / .cshrc next >
Text File  |  1998-04-10  |  535b  |  25 lines

  1. # This is the default standard .cshrc provided to csh users.
  2. # They are expected to edit it to meet their own needs.
  3. #
  4. # The commands in this file are executed each time a new csh shell
  5. # is started.
  6. #
  7. # $Revision: 1.6 $
  8. #
  9.  
  10. # list directories in columns
  11. #
  12. alias ls 'ls -C'
  13.  
  14. # Remember last 100 commands
  15. set history = 100
  16.  
  17. # For interactive shells, set the prompt to show the host name and event number.
  18. if ( $?prompt ) then
  19.     if ( -o /bin/su ) then
  20.         set prompt="`hostname -s` \!# "
  21.     else
  22.         set prompt="`hostname -s` \!% "
  23.     endif
  24. endif
  25.