dot.cshrc revision 29871
1#	$Id: dot.cshrc,v 1.7 1997/02/22 13:56:32 peter Exp $
2#
3# .cshrc - csh resource script, read at beginning 
4#	   of execution by each shell
5#
6# see also csh(1), environ(7).
7#
8
9alias h		history 25
10alias j		jobs -l
11alias la	ls -a
12alias lf	ls -FA
13alias ll	ls -lA
14
15setenv	EDITOR	vi
16setenv	PAGER	more
17setenv	BLOCKSIZE	K
18
19if ($?prompt) then
20	# An interactive shell -- set some stuff up
21	set filec
22	set history = 100
23	set savehist = 100
24	set mail = (/var/mail/$USER)
25
26	# make mail(1) happy:
27	setenv	crt	24
28endif
29