NetBSD/share/skel/dot.cshrc

26 lines
482 B
Plaintext
Raw Normal View History

1994-04-05 01:25:40 +04:00
#csh .cshrc file
1993-03-21 12:45:37 +03:00
1994-04-05 01:25:40 +04:00
alias h history 25
1993-03-21 12:45:37 +03:00
alias j jobs -l
alias la ls -a
alias lf ls -FA
1994-04-05 01:25:40 +04:00
alias ll ls -lA
1993-03-21 12:45:37 +03:00
alias su su -m
1994-04-05 01:25:40 +04:00
setenv EDITOR vi
setenv EXINIT 'set autoindent'
setenv PAGER more
set path = (~/bin /bin /usr/{bin,X11/bin,contrib/bin,games,old/bin} /usr/local/bin)
1993-03-21 12:45:37 +03:00
if ($?prompt) then
# An interactive shell -- set some stuff up
set filec
set history = 1000
set ignoreeof
set mail = (/var/mail/$USER)
set mch = `hostname -s`
1994-04-05 01:25:40 +04:00
set prompt = "${mch:q}: {\!} "
1993-03-21 12:45:37 +03:00
umask 2
endif