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