Basically I need to run the script with paths related to the shell script file location, how can I change the current directory to the same directory as where the script file resides?
|
|
|
|
|
|
|
In bash you should get what you need like this:
|
||||||
|
|
|
Have a look at http://fritzthomas.com/open-source/linux/384-how-to-get-the-absolute-path-within-the-running-bash-script The original post contains the solution (ignore the responses, they don't add anything useful). The interesting work is done by the mentioned unix command "readlink" with option -f. Works when the script is called by an absolute as well as by a relative path. Here a slightly modified copy of the solution in case the other post vanishes.... This is for bash, sh, ksh:
Almost the same for tcsh, csh:
|
|||
|
|
|
|
echo \pwd\/\dirname $0\ would NOT work in case that the script would be called with absolute path |
||
|
|
|
|
echo \ that should do the trick -- it might look ugly depending on how it was invoked and the cwd but should get you where you need to go (or you can tweak the string if you care how it looks) |
||
|
|
|
|
I'm not sure how to do it, but neither of the previous answers work. This is because $0 is the command as called. If you call the script foo like this './foo', then $0 = ./foo, not /path/to/foo like you want. |
||||
|
|
|
Assuming you're using bash
This script, when ran, should print the directory that you're in, and then the directory the script is in, for example, when calling it from / (the script is in /home/mez/), it outputs
Remember, when assigning variables from the output of a command, wrap the command in $( and ) - or you'll not get the desired output. ` |
||||||||||
|
