# Startup file for bash login shells.

cat /etc/message
echo

if [ "$PS1" ]; then
  PS1='\u@\h\$ '
  if [ -f ~/bash.rc ]; then
    source ~/bash.rc;
  else
    if [ -f ~/.bashrc ]; then source ~/.bashrc; fi;
  fi
fi

LOGIN_SHELL=true

cd ~
