dot.profile revision 1.3
11.3Smartin#	$NetBSD: dot.profile,v 1.3 2020/01/09 19:17:44 martin Exp $
21.1SjonathanPATH=/sbin:/bin:/usr/bin:/usr/sbin:/
31.1Sjonathanexport PATH
41.1Sjonathan
51.1Sjonathan	# get the terminal type
61.1Sjonathan	_loop=""
71.1Sjonathan	while [ "X${_loop}" = X"" ]; do
81.1Sjonathan		echo "" >& 2
91.1Sjonathan		echo "Setting terminal type. Options:" >& 2
101.1Sjonathan		echo "  vt100	for dumb serial terminal" >& 2
111.1Sjonathan		echo "  xterm   for xterm." >& 2
121.1Sjonathan		echo "" >& 2
131.1Sjonathan		eval `tset -s -m ":?$TERM"`
141.1Sjonathan		if [ "X${TERM}" != X"unknown" ]; then
151.1Sjonathan			_loop="done"
161.1Sjonathan		fi
171.1Sjonathan	done
181.1Sjonathan
191.3Smartin	sysinst || stty sane
20