# System-wide .profile for sh(1)

PATH="/bin:/sbin:/usr/bin:/usr/local/bin:/usr/sbin:/var/root/bin"
export PATH

TERM="vt102"
export TERM

if [ "${BASH-no}" != "no" ]; then
	[ -r /etc/bashrc ] && . /etc/bashrc
fi

if [ -x "/bin/zsh" ]; then
  # Prompt ala my famous prompt from tcsh.
  export PROMPT="[%B%u%m%b/%B%n%b]%B%~%b %(#.#.) "

  # Welcome to ZSH
  /bin/zsh
fi 
