NetBSD/etc/root/dot.cshrc

30 lines
721 B
Plaintext
Raw Normal View History

1993-03-21 12:45:37 +03:00
set history=1000
set path=(/sbin /usr/sbin /usr/local/sbin /bin /usr/bin /usr/local/bin)
1993-03-21 12:45:37 +03:00
# directory stuff: cdpath/cd/back
1997-02-15 13:02:07 +03:00
set cdpath=(/sys /usr/src/{bin,sbin,usr.{bin,sbin},lib,libexec,share,contrib,local,games,old,gnu/{usr.bin,libexec,lib,games}})
setenv BLOCKSIZE 1k
1993-03-21 12:45:37 +03:00
alias h history
1997-02-15 13:02:07 +03:00
alias hup 'kill -HUP `cat /var/run/\!$.pid`'
1993-03-21 12:45:37 +03:00
alias j jobs -l
alias ll ls -l
1993-03-21 12:45:37 +03:00
alias x exit
1997-02-15 13:02:07 +03:00
alias z suspend
alias back 'set back=$old; set old=$cwd; cd $back; unset back; dirs'
alias cd 'set old=$cwd; chdir \!*'
1993-03-21 12:45:37 +03:00
alias pd pushd
alias pd2 pushd +2
alias pd3 pushd +3
alias pd4 pushd +4
alias tset 'set noglob histchars=""; eval `\tset -s \!*`; unset noglob histchars'
if ($?prompt) then
set prompt="`hostname -s`# "
endif
1997-02-15 13:02:07 +03:00
umask 022