# Startup file for bash login shells.
#
default_dir=c:/usr/lib

ignoreeof=3

LOGIN_SHELL=true

# If the user has her own init file, then use that one, else use the
# canonical one.
if [ -f ~/bash.rc ]; then
  source ~/bash.rc
else if [ -f ${default_dir}Bashrc ]; then
  source ${default_dir}Bashrc;
  fi
fi

