# ~/.bash_profile: executed by bash(1) for login shells.

for file in ~/.profile ~/.bashrc ~/.bash_initshared; do
	if [ -f "$file" ]; then
		source "$file"
	fi
done

# output system status

if ! [ -e /etc/chroot ]; then
  echo -e "\n"
  [ -s /etc/mtab ] && df -h
  echo -e
  [ -e /proc/cpuinfo ] && free
  echo -e
  [ -e /proc/cpuinfo ] && [ -x `which w` ] && w
fi

if [ -f ~/.motd ]; then
   cat ~/.motd
fi

mesg n
