I wanted to change the path environment variable in a shell script. The path variable should be modified after the execution of the shell script.

link|improve this question

45% accept rate
feedback

2 Answers

There are two ways I know of to do this. The first is to run the script in the context of the current shell with either of:

. myscript.sh
source myscript.sh

but that runs the risk of polluting the current shell with all sorts of stuff.

I'd prefer a solution where the amount of information leakage is minimal. That means still running it as a subshell but outputting the new path on statndard output:

PATH=$(myscript.sh)

This method is a much better one since the path is the only thing that can be affected by the subshell but you have to be careful with what that subshell outputs.

link|improve this answer
An obvious 3rd way is "eval", though that's as dangerous as sourcing. For example, the common terminal-set utility "tset" outputs commands intended for the calling shell to evaluate. – Tony Delroy Nov 5 '10 at 3:07
feedback

You need to source your script instead of executing it.

. script.sh

or

source script.sh

Inside of the script it's enough to either export od just set the variable.

When the script is executed, it runs in a separate shell process, and can't easily change parent shell's variables.

More about it here: Can a shell script set environment variables of the calling shell?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.