Do you think changing directories inside bash or Perl scripts is acceptable? Or should one avoid doing this at all costs?
What is the best practice for this issue?
|
2
|
|||
|
|
|
The current working directory is local to the executing shell, so you can't affect the user unless he is "dotting" (running it in the current shell, as opposed to running it normally creating a new shell process) your script. A very good way of doing this is to use subshells, which i often do in aliases.
The paranthesis will make sure that the command is executed from a sub-shell, and thus will not affect the working directory of my shell. Also it will not affect the last-working-directory, so cd -; works as expected. |
||
|
|
|
|
Like Hugo said, you can't effect your parent process's cwd so there's no problem. Where the question is more applicable is if you don't control the whole process, like in a subroutine or module. In those cases you want to exit the subroutine in the same directory as you entered, otherwise subtle action-at-a-distance creeps in which causes bugs. You can to this by hand...
but that has problems. If the subroutine returns early or dies (and the exception is trapped) your code will still be in Fortunately, there's a couple modules to make this easier. File::pushd is one, but I prefer File::chdir.
File::chdir makes changing directories into assigning to |
||
|
|
|
|
I don't do this often, but sometimes it can save quite a bit of headache. Just be sure that if you change directories, you always change back to the directory you started from. Otherwise, changing code paths could leave the application somewhere it should not be. |
||||||||
|
|
|
I'll second Schwern's and Hugo's comments above. Note Schwern's caution about returning to the original directory in the event of an unexpected exit. He provided appropriate Perl code to handle that. I'll point out the shell (Bash, Korn, Bourne) trap command. trap "cd $saved_dir" 0 will return to saved_dir on subshell exit (if you're .'ing the file). mike |
||
|
|
|
|
Consider also that Unix and Windows have a built in directory stack: pushd and popd. It’s extremely easy to use. |
||
|
|
|
|
For Perl, you have the File::pushd module from CPAN which makes locally changing the working directory quite elegant. Quoting the synopsis:
|
||
|
|
|
|
Is it at all feasible to try and use fully-quantified paths, and not make any assumptions on which directory you're currently in? e.g.
rather than
This will probably be easier in the long run, as you don't have to worry about weird things happening (your script dying or being killed before it could put the current working directory back to where it was), and is quite possibly more portable. |
||
|
|