]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/skel/dot.cshrc
This commit was generated by cvs2svn to compensate for changes in r50397,
[FreeBSD/FreeBSD.git] / share / skel / dot.cshrc
1 #       $Id: dot.cshrc,v 1.8 1997/09/26 08:28:29 joerg 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
9 alias h         history 25
10 alias j         jobs -l
11 alias la        ls -a
12 alias lf        ls -FA
13 alias ll        ls -lA
14
15 setenv  EDITOR  vi
16 setenv  PAGER   more
17 setenv  BLOCKSIZE       K
18
19 if ($?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 endif