home *** CD-ROM | disk | FTP | other *** search
/ ftp.sberbank.sumy.ua / 2014.11.ftp.sberbank.sumy.ua.tar / ftp.sberbank.sumy.ua / incoming / sxtech / cpsup / .cshrc next >
Text File  |  2014-08-29  |  771b  |  35 lines

  1. # $FreeBSD: src/share/skel/dot.cshrc,v 1.10.2.3 2001/08/01 17:15:46 obrien Exp $
  2. #
  3. # .cshrc - csh resource script, read at beginning of execution by each shell
  4. #
  5. # see also csh(1), environ(7).
  6. #
  7.  
  8. alias h        history 25
  9. alias j        jobs -l
  10. alias la    ls -a
  11. alias lf    ls -FA
  12. alias ll    ls -lA
  13.  
  14. # A righteous umask
  15. umask 22
  16.  
  17. set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin /usr/X11R6/bin $HOME/bin)
  18.  
  19. setenv    EDITOR    vi
  20. setenv    PAGER    more
  21. setenv    BLOCKSIZE    K
  22.  
  23. if ($?prompt) then
  24.     # An interactive shell -- set some stuff up
  25.     set filec
  26.     set history = 100
  27.     set savehist = 100
  28.     set mail = (/var/mail/$USER)
  29.     if ( $?tcsh ) then
  30.         bindkey "^W" backward-delete-word
  31.         bindkey -k up history-search-backward
  32.         bindkey -k down history-search-forward
  33.     endif
  34. endif
  35.