1# $FreeBSD$ 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) 25endif 26