PATH=$PATH:/sbin:/usr/sbin:/opt/hp3587s/bin:/opt/e3238s/bin:/usr/local/bin
if [ ! "$DT" ];then
  # Setup stty parameters
  if [ -f /usr/bin/tty ] && tty -s; then
    stty erase "^H" kill "^U" intr "^C" eof "^D"
    stty hupcl ixon ixoff
    stty susp 
  fi

  # Set up the terminal:
  case "${TERM}" in
    *unknown*) eval `tset -sQ -m ':?hpterm' `
               ;;
            *) # we know ${TERM}, 
  esac
fi

# Set up the shell environment:
# set -u     # Treat unset variables as errors
  trap "echo 'logout `whoami`'" 0

# Turn on/off (-y/-n) broadcast messages
#  mesg -n

# Set up the shell variables and mark for export
set -a
  COLUMNS=`tput cols`   # how many columns on a $TERM terminal
  EDITOR=/usr/bin/vi    # default editor
  LINES=`tput lines`    # how many lines on a $TERM terminal
  PAGER="/usr/bin/more" # define default pager--most will use "less."
  PS1="$ "              # Primary prompt
  TERM="${TERM}"
  START=~/.env; export START
  ENV='${START[(_$-=1)+(_=0)-(_$-!=_${-%%*i*})]}'; export ENV
set +a

umask 022        # Set file creation mask
set -o vi        # Set up in-line edit for vi, gmacs, emacs, viraw
set -o ignoreeof # Prohibit ^D from kill process.
