Untitled

From ivaat, 5 Months ago, written in Plain Text, viewed 1 times. This paste will give up the ghost in 1 Second.
URL https://paste.ovh/view/5056e88a Embed
Download Paste or View Raw
  1.  cat .cshrc
  2. # $FreeBSD: releng/12.2/bin/csh/dot.cshrc 363525 2020-07-25 11:57:39Z pstef $
  3. #
  4. # .cshrc - csh resource script, read at beginning of execution by each shell
  5. #
  6. # see also csh(1), environ(7).
  7. # more examples available at /usr/share/examples/csh/
  8. #
  9.  
  10. alias h         history 25
  11. alias j         jobs -l
  12. alias la        ls -aF
  13. alias lf        ls -FA
  14. alias ll        ls -lAF
  15.  
  16. # read(2) of directories may not be desirable by default, as this will provoke
  17. # EISDIR errors from each directory encountered.
  18. # alias grep    grep -d skip
  19.  
  20. # A righteous umask
  21. umask 22
  22.  
  23. set path = (/sbin /bin /usr/sbin /usr/bin /usr/local/sbin /usr/local/bin $HOME/bin)
  24.  
  25. setenv  EDITOR  vi
  26. setenv  PAGER   less
  27.  
  28. if ($?prompt) then
  29.         # An interactive shell -- set some stuff up
  30.         set prompt = "%N@%m:%~ %# "
  31.         set promptchars = "%#"
  32.  
  33.         set filec
  34.         set history = 1000
  35.         set savehist = (1000 merge)
  36.         set autolist = ambiguous
  37.         # Use history to aid expansion
  38.         set autoexpand
  39.         set autorehash
  40.         set mail = (/var/mail/$USER)
  41.         if ( $?tcsh ) then
  42.                 bindkey "^W" backward-delete-word
  43.                 bindkey -k up history-search-backward
  44.                 bindkey -k down history-search-forward
  45.         endif
  46.  
  47. endif

Reply to "Untitled"

Here you can reply to the paste above

captcha