Added all of the MH sources, including RCS files, in
[mmh] / docs / historical / mh-6.8.5 / support / bboards / cshrc
1 printenv USER >& /dev/null
2 if ($status != 0) then
3     set path=(/bin /usr/ucb /usr/bin /usr/mmdf/bin /usr/uci .)
4     goto crontab
5 endif
6
7 printenv LOGNAME >& /dev/null
8 if ($status != 0) then
9     setenv LOGNAME "$USER"
10 endif
11
12 if (-r ~/.$LOGNAME) then
13     source ~/.$LOGNAME
14 else
15     if (~$LOGNAME/.cshrc != ~/.cshrc) source ~$LOGNAME/.cshrc
16 endif
17
18 if (~$LOGNAME/.signature != ~/.signature && -r ~$LOGNAME/.signature \
19         && -r ~/.signature) \
20     setenv SIGNATURE "`cat ~/.signature` (agent: `cat ~$LOGNAME/.signature`)"
21
22 crontab:
23 umask 0022