Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know I can use cd command to change my working directory, but if do this command

cd SOME_PATH && run_some_command

The working directory will be changed permanently. Is there some way to change the working directory just temporary like this?

PWD=SOME_PATH run_some_command
share|improve this question

3 Answers

up vote 8 down vote accepted

You can run the cd and the executable in a subshell by enclosing the command line in a pair of parenthesis:

(cd SOME_PATH && exec_some_command)

Demo:

$ pwd
/home/abhijit
$ (cd /tmp && pwd)  # directory changed in the subshell
/tmp 
$ pwd               # parent shell's pwd is still the same
/home/abhijit
share|improve this answer
That sort of invalidates the point of using exec, don't you think? – tripleee Apr 30 '12 at 10:32
@tripleee: I guess OP meant to execute any executable and not the exec. – codaddict Apr 30 '12 at 10:34
@tripleee sorry for my ambiguous description :( – Ethan Zhang Apr 30 '12 at 10:37

bash has a builtin

pushd SOME_PATH
run_stuff
...
...
popd 
share|improve this answer

Something like this should work:

sh -c 'cd /tmp && exec pwd'
share|improve this answer
This is just a paraphrase of codaddict's answer. – tripleee Apr 30 '12 at 11:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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