Source code pulled from OpenBSD for OpenNTPD. The place to contribute to this code is via the OpenBSD CVS tree.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
769 B

  1. # $OpenBSD: dot.cshrc,v 1.10 2020/01/24 02:09:51 okan Exp $
  2. #
  3. # csh initialization
  4. alias df df -k
  5. alias du du -k
  6. alias f finger
  7. alias h 'history -r | more'
  8. alias j jobs -l
  9. alias la ls -a
  10. alias lf ls -FA
  11. alias ll ls -lsA
  12. alias tset 'set noglob histchars=""; eval `\tset -s \!*`; unset noglob histchars'
  13. alias z suspend
  14. set path = (~/bin /bin /sbin /usr/{bin,sbin,X11R6/bin,local/bin,local/sbin,games})
  15. if ($?prompt) then
  16. # An interactive shell -- set some stuff up
  17. set filec
  18. set history = 1000
  19. set ignoreeof
  20. set mail = (/var/mail/$USER)
  21. set mch = `hostname -s`
  22. alias prompt 'set prompt = "$mch:q"":$cwd:t {\!} "'
  23. alias cd 'cd \!*; prompt'
  24. alias chdir 'cd \!*; prompt'
  25. alias popd 'popd \!*; prompt'
  26. alias pushd 'pushd \!*; prompt'
  27. cd .
  28. umask 22
  29. endif