aboutsummaryrefslogtreecommitdiffstats
path: root/msec.csh
blob: 0792667a3f2a6a05353156379f9696735e6ff123 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
if ( -r /etc/sysconfig/msec ) then
	eval `sed -n 's/^\([^#]*\)=\([^#]*\)/set \1=\2;/p' < /etc/sysconfig/msec`
endif

if ! { (echo "${PATH}" | grep -q /usr/X11R6/bin) } then
	setenv PATH "${PATH}:/usr/X11R6/bin"
endif

if ! { (echo "${PATH}" | grep -q /usr/games) } then
	setenv PATH "${PATH}:/usr/games"
endif

# translate sh variables from /etc/sysconfig/msec to their equivalent in csh
if ( ${?TMOUT} ) then
    if ( "$TMOUT" != "" ) then
	set autologout=`expr $TMOUT / 60`
    endif
	
endif

if ( ${?HISTFILESIZE} ) then
    if ( "$HISTFILESIZE" != "" ) then
	set history=$HISTFILESIZE
    endif
endif

setenv SECURE_LEVEL ${SECURE_LEVEL}