xref: /original-bsd/share/skel/dot.cshrc (revision 1e14295c)
1# .cshrc initialization
2
3alias f		finger
4alias h		'history -r | more'
5alias j		jobs -l
6alias la	ls -a
7alias lf	ls -FA
8alias ll	ls -lgsA
9alias tset	'set noglob histchars=""; eval `\tset -s \!*`; unset noglob histchars'
10alias x		exit
11alias z		suspend
12
13set path=(/usr/ucb /bin /usr/bin /usr/new /usr/local /usr/hosts /usr/games .)
14
15if ($?prompt) then
16	# An interactive shell -- set some stuff up
17	set ignoreeof
18	set mch = `hostname -s`
19	set prompt = "$mch:q:$cwd:t {\!} "
20	set filec
21	set mail = (/usr/spool/mail/$USER)
22endif
23