summaryrefslogtreecommitdiff
path: root/etc/root/dot.login
blob: 74a5d6f359990b878c8fac482795bf07a076e662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# $OpenBSD: dot.login,v 1.13 2009/05/06 22:02:05 millert Exp $
#
# csh login file

if ( -x /usr/bin/tset ) then
	set noglob histchars=""
	onintr finish
	if ( $?XTERM_VERSION ) then
		eval `tset -IsQ '-munknown:?vt220' $TERM`
	else
		eval `tset -sQ '-munknown:?vt220' $TERM`
	endif
	finish:
	unset noglob histchars
	onintr
endif

if ( `logname` == `whoami` ) then
	echo "Read the afterboot(8) man page for administration advice."
endif