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:
|
|||||||||||||||||||
|
|
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 For bash, sh, ksh:
For tcsh, csh:
See also: http://stackoverflow.com/a/246128/59087 |
|||||||||||||||||||
|
|
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. ` |
|||||||||||
|
|
If you're using bash....
|
|||||
|
|
As theMarko suggests:
This works unless you execute the script from the same directory where the script resides, in which case you get a value of '.' To get around that issue use:
You can now use the variable current_dir throughout your script to refer to the script directory. However this may still have the symlink issue. |
||||
|
|
|
Inspired by blueyed’s answer
|
|||
|
|
|
An earlier comment on an answer said it, but it is easy to miss among all the other answers. When using bash:
|
|||
|
|
|
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. |
|||||
|
|
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) |
|||
|
|
|
echo \pwd\/\dirname $0\ would NOT work in case that the script would be called with absolute path |
|||
|
|
|
This checks if directory exists and is writable
-Muralikrishna.B |
|||
|
|
protected by Community♦ Jul 26 '11 at 11:14
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.