#!/bin/bash
if [ -r /etc/profile ]
then
	. /etc/profile
fi

export BASH_ENV="$HOME/.bashrc"

if [ -r "$HOME/.profile" ]
then
	. "$HOME/.profile"
fi