comparison support/bboards/cshrc @ 0:bce86c4163a3

Initial revision
author kono
date Mon, 18 Apr 2005 23:46:02 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:bce86c4163a3
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