]> git.pld-linux.org Git - projects/setup.git/blame - etc/csh.cshrc
- added rsync entries.
[projects/setup.git] / etc / csh.cshrc
CommitLineData
9bfefe38 1# /etc/cshrc
2
3# System wide environment and startup programs for csh users
4
5setenv PATH "${PATH}:/usr/X11R6/bin"
6
7if ($?prompt) then
8 [ "$SHELL" = /bin/tcsh ]
9 if ($status == 0) then
25c025a5 10 set prompt='%n@%m %c$ '
9bfefe38 11 else
25c025a5 12 set prompt=\`id -nu`@`hostname -s`\\$\
9bfefe38 13 endif
14endif
15
16limit coredumpsize 1000000
17
18[ `id -gn` = `id -un` -a `id -u` -gt 14 ]
19if $status then
20 umask 022
21else
22 umask 002
23endif
24
25setenv HOSTNAME `/bin/hostname`
26set history=1000
27
28test -d /etc/profile.d
29if ($status == 0) then
30 set nonomatch
31 foreach i ( /etc/profile.d/*.csh )
32 test -f $i
33 if ($status == 0) then
34 source $i
35 endif
36 end
37 unset nonomatch
38endif
This page took 0.037148 seconds and 4 git commands to generate.