currently writing a script that sets up an environment to do some work with several programs. It asks the user questions and based on that creates a set of variables that suits.
I want those variables to be available in the bash process that the user executed the script in... the only way I have found to do this so far, would be to export all the variables to "~/profile" and then ask the user to perform ". ~/profile" when the execution is completed.
I was hoping there was an easier way to do this, but I cannot find anything on the web that allows this?
Any help would be great
Cheers!

