:
#
# .profile	-- Commands executed by a login Korn shell
#
#	@(#) profile 1.1 90/03/13 
#
# Copyright (c) 1990, 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. 
#

PATH=$PATH:$HOME/bin:/altos/bin:/usr/altos/bin:.  # set command search path
export PATH

if [ -z "$LOGNAME" ]; then
	LOGNAME=`logname`		# name of user who logged in
	export LOGNAME
fi

MAIL=/usr/spool/mail/$LOGNAME		# mailbox location
export MAIL

if [ -z "$PWD" ]; then
	PWD=$HOME			# assumes initial cwd is HOME
	export PWD
fi

if [ -f $HOME/.kshrc -a -r $HOME/.kshrc ]; then
	ENV=$HOME/.kshrc		# set ENV if there is an rc file
	export ENV
fi

# use default system file creation mask (umask)

eval `tset -m ansi:ansi -m $TERM:\?${TERM:-ansi} -r -s -Q`
export TERM

# If job control is enabled, set the suspend character to ^Z (control-z):
case $- in
*m*)	stty susp '^z'
	;;
esac

set -o ignoreeof			# don't let control-d logout

case $LOGNAME in			# include command number in prompt
root)	PS1="!# " ;;
*)	PS1="!$ " ;;
esac
export PS1
