xref: /netbsd/distrib/sgimips/miniroot/dot.profile (revision 42d0f98b)
1PATH=/sbin:/bin:/usr/bin:/usr/sbin:/
2export PATH
3
4	# get the terminal type
5	_loop=""
6	while [ "X${_loop}" = X"" ]; do
7		echo "" >& 2
8		echo "Setting terminal type. Options:" >& 2
9		echo "iris-ansi	standard IRIX console" >& 2
10		echo "  vt100   for dumb serial terminal" >& 2
11		echo "  xterm   for xterm." >& 2
12		echo "" >& 2
13		eval `tset -s -m ":?$TERM"`
14		if [ "X${TERM}" != X"unknown" ]; then
15			_loop="done"
16		fi
17	done
18
19	sysinst || stty sane
20