1. Remove a rather strangely gratuitous bit of profanity
[unix-history] / contrib / adduser / dot.cshrc
CommitLineData
6ad7895a
JH
1# .cshrc initialization
2
3alias df df -k
4alias du du -k
5alias f finger
6alias h 'history -r | more'
7alias j jobs -l
8alias la ls -a
9alias lf ls -FA
10alias ll ls -lgsA
11alias su su -m
12alias tset 'set noglob histchars=""; eval `\tset -s \!*`; unset noglob histchars'
13alias x exit
14alias z suspend
15
16set path = (~/bin /bin /usr/{bin,new,games,local,old} .)
17
18if ($?prompt) then
19 # An interactive shell -- set some stuff up
20 set filec
21 set history = 1000
22 set ignoreeof
23 set mail = (/var/mail/$USER)
24 set mch = `hostname -s`
25 set prompt = "$mch:q:$cwd:t {\!} "
26 umask 2
27endif