I created the below script
#!/bin/sh
export PATH=$PATH:/windows/bin
echo done
This is supposed to add my windows bin share to the path statement so I can run programs from it..
If I execute the export command from a command prompt it works like a champ. However, It does not execute from the shell file. It prints out "done" but the PATH did not change..
Also I can't get this PATH to stick. If I set it up then close the shell, the next time I open a shell I have to set it again.
HELP???