NetBSD/share/skel/dot.cshrc

29 lines
597 B
Plaintext
Raw Normal View History

# .cshrc initialization
1993-03-21 12:45:37 +03:00
alias df df -k
alias du du -k
alias f finger
alias h 'history -r | more'
1993-03-21 12:45:37 +03:00
alias j jobs -l
alias la ls -a
alias lf ls -FA
alias ll ls -lgsA
1993-03-21 12:45:37 +03:00
alias su su -m
alias tset 'set noglob histchars=""; eval `\tset -s \!*`; unset noglob histchars'
alias x exit
alias z suspend
1993-03-21 12:45:37 +03:00
set path = (~/bin /bin /usr/{bin,new,games,local,old} .)
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`
alias cd 'cd \!*; set prompt = "$mch:q"":$cwd:t {\!} "'
cd .
umask 22
1993-03-21 12:45:37 +03:00
endif