blob: f4fac29823e6aadc9955c41671b46deb0fdd3286 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $OpenBSD: dot.login,v 1.11 2005/03/30 19:50:07 deraadt Exp $
#
# csh login file
set tterm='?'$TERM
set noglob
onintr finish
eval `tset -s -Q $tterm`
finish:
unset noglob
unset tterm
onintr
if ( `logname` == `whoami` ) then
echo "Read the afterboot(8) man page for administration advice."
endif
|