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.

26 lines
629 B

  1. alias mail Mail
  2. set history=1000
  3. set path=(/sbin /usr/sbin /bin /usr/bin)
  4. # directory stuff: cdpath/cd/back
  5. set cdpath=(/sys /usr/src/{bin,sbin,usr.{bin,sbin},pgrm,lib,libexec,share,contrib,local,devel,games,old,})
  6. setenv BLOCKSIZE 1k
  7. alias cd 'set old=$cwd; chdir \!*'
  8. alias h history
  9. alias j jobs -l
  10. alias ll ls -l
  11. alias back 'set back=$old; set old=$cwd; cd $back; unset back; dirs'
  12. alias z suspend
  13. alias x exit
  14. alias pd pushd
  15. alias pd2 pushd +2
  16. alias pd3 pushd +3
  17. alias pd4 pushd +4
  18. alias tset 'set noglob histchars=""; eval `\tset -s \!*`; unset noglob histchars'
  19. if ($?prompt) then
  20. set prompt="`hostname -s`# "
  21. endif