vote up 4 vote down star

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?

flag

25% accept rate

6 Answers

vote up 12 vote down check

In bash you should get what you need like this:

#!/bin/bash

BASEDIR=`dirname $0`
echo $BASEDIR
link|flag
But he has hinted the most important part. I end up doing: cd dirname $0 Works like a charm. Perhaps Marko might want to revise this a bit? – goodwill Oct 28 '08 at 8:30
My comment saying that this was incorrect was incorrect. When I used the "load new answers" link, what it returned was incorrectly formatted, and had no backticks – Mez Oct 28 '08 at 8:32
This will not work if the script is in your path. – sharth Aug 20 at 19:14
vote up 0 vote down

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:

#!/bin/bash 
# Absolute path to this script, e.g. /home/user/bin/foo.sh
SCRIPT=`readlink -f $0`
# Absolute path this script is in, thus /home/user/bin
SCRIPTPATH=`dirname $SCRIPT`
echo $SCRIPTPATH

Almost the same for tcsh, csh:

#!/bin/tcsh
# Absolute path to this script, e.g. /home/user/bin/foo.csh
set SCRIPT=`readlink -f $0`
# Absolute path this script is in, thus /home/user/bin
set SCRIPTPATH=`dirname $SCRIPT`
echo $SCRIPTPATH
link|flag
vote up 0 vote down

echo \pwd\/\dirname $0\ would NOT work in case that the script would be called with absolute path

link|flag
vote up -1 vote down

echo \pwd\/\dirname $0\

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)

link|flag
vote up 0 vote down

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.

link|flag
1  
If you call the script like './foo', then pwd will be the current directory. – R. Bemrose Dec 17 '08 at 18:25
vote up 6 vote down

Assuming you're using bash

#!/bin/bash

current_dir=$(pwd)
script_dir=$(dirname $0)

echo $current_dir
echo $script_dir

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

/
/home/mez

Remember, when assigning variables from the output of a command, wrap the command in $( and ) - or you'll not get the desired output. `

link|flag
Yours is clearer, but Marko indeed point out the main point :) so I still give you 1 upvote – goodwill Oct 28 '08 at 8:31
I agree with goodwill. +1 – TheMarko Oct 28 '08 at 8:35
Yeah, no, a bug made the code block show up incorrect (and bad) code – Mez Oct 28 '08 at 8:35
No harm done and the $() is still a valid point :) – TheMarko Oct 28 '08 at 8:37
TheMarko, twas actually because of the non-indentation that caused me to see BASEDIR=dirname $0 echo $BASEDIR Which would basically run it over and over again. Greg fixed that, making me wrong :'( – Mez Oct 28 '08 at 8:42

Your Answer

Get an OpenID
or

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