Deleted Added
full compact
dot.cshrc (234823) dot.cshrc (242514)
1# $FreeBSD: head/share/skel/dot.cshrc 234823 2012-04-29 22:29:48Z eadler $
1# $FreeBSD: head/share/skel/dot.cshrc 242514 2012-11-03 14:46:15Z eadler $
2#
3# .cshrc - csh resource script, read at beginning of execution by each shell
4#
5# see also csh(1), environ(7).
6# more examples available at /usr/share/examples/csh/
7#
8
9alias h history 25
10alias j jobs -l
11alias la ls -aF
12alias lf ls -FA
13alias ll ls -lAF
14
15# A righteous umask
16umask 22
17
18set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin $HOME/bin)
19
20setenv EDITOR vi
2#
3# .cshrc - csh resource script, read at beginning of execution by each shell
4#
5# see also csh(1), environ(7).
6# more examples available at /usr/share/examples/csh/
7#
8
9alias h history 25
10alias j jobs -l
11alias la ls -aF
12alias lf ls -FA
13alias ll ls -lAF
14
15# A righteous umask
16umask 22
17
18set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin $HOME/bin)
19
20setenv EDITOR vi
21setenv PAGER less
21setenv PAGER more
22setenv BLOCKSIZE K
23
24if ($?prompt) then
25 # An interactive shell -- set some stuff up
26 if ($uid == 0) then
27 set user = root
28 endif
29 set prompt = "%n@%m:%/ %# "

--- 17 unchanged lines hidden ---
22setenv BLOCKSIZE K
23
24if ($?prompt) then
25 # An interactive shell -- set some stuff up
26 if ($uid == 0) then
27 set user = root
28 endif
29 set prompt = "%n@%m:%/ %# "

--- 17 unchanged lines hidden ---