T=`mktemp`
(
# TODO loading bash_profile and bashrc like this is wrong, but probably won't hurt
echo '. $HOME/.bash_profile'
echo '. $HOME/.bashrc'
cat
) >"$T"
bash --rcfile "$T"
rm "$T"
