Re: Set Path end up no effects



I might have typo mistake.
I think prefix "." should be definitely important otherwise the
"test.env" can't be executed.
But, I sure the "test.env" has been ran as the echo line is shown
while the problem insisted.

Anyway, thanks for information

On Fri, 31 Aug 2007 05:09:18 -0700, ter...@xxxxxxxxx wrote:
I am trying to set the path in with adding lines in .bash_profile

if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi

if [ -f ~/test.env ]; then
~/test.env
fi

You might want to try

if [ -f ~/test.env ]; then
. ~/test.env
fi


.