#
# .login	-- Commands executed only by a login C-shell
#
#	@(#) login 5.1 89/08/09 
#
# Copyright (c) 1985-89, The Santa Cruz Operation, Inc.
# All rights reserved.
#
# This Module contains Proprietary Information of the Santa Cruz
# Operation, Inc., and should be treated as Confidential. 
#

setenv SHELL /bin/csh

set ignoreeof				# don't let control-d logout
set path = ($path $home/bin /altos/bin /usr/altos/bin .) # execution search path

set noglob
set term = (`tset -m ansi:ansi -m :\?ansi -r -S -Q`)
if ( $status == 0 ) then
	setenv TERM "$term"
endif
unset term noglob
