vote up 16 vote down star
7

How do I get the path of the directory in which a bash script is located FROM that bash script.

For instance, lets say I want to use a bash script as a launcher for another application. I want to change working directory to the one where the bash script is located so I can operate on the files in that directory like so:

$ ./application

flag

See stackoverflow.com/questions/192319/… for a very similar question. – jleedev Oct 29 '08 at 8:46

23 Answers

vote up 30 vote down check

Use dirname:

#!/bin/bash
echo "The script you are running has basename `basename $0`, dirname `dirname $0`"
echo "The present working directory is `pwd`"

using pwd alone will not work if you are not running the script from the directory it is contained in.

[matt@server1 ~]$ pwd
/home/matt
[matt@server1 ~]$ ./test2.sh
The script you are running has basename test2.sh, dirname .
The present working directory is /home/matt
[matt@server1 ~]$ cd /tmp
[matt@server1 tmp]$ ~/test2.sh
The script you are running has basename test2.sh, dirname /home/matt
The present working directory is /tmp
link|flag
2  
For portability beyond bash, $0 may not always be enough. You may need to substitute "type -p $0" to make this work if the command was found on the path. – Darron Oct 23 '08 at 20:15
vote up 1 vote down
function getScriptAbsoluteDir { # fold>>
    # @description used to get the script path
    # @param $1 the script $0 parameter
    local script_invoke_path="$1"
    local cwd=`pwd`

    # absolute path ? if so, the first character is a /
    if test "x${script_invoke_path:0:1}" = 'x/'
    then
        RESULT=`dirname "$script_invoke_path"`
    else
        RESULT=`dirname "$cwd/$script_invoke_path"`
    fi
} # <<fold
link|flag
sorry I'm a bit of a bash scrip noob, do I call this function by just typing getScriptAbsoluteDir or local currdir='getScriptAbsoluteDir'? – Jim Robert 19 hours ago
vote up 1 vote down

The dirname command is the most basic, simply parsing the path up to the filename off of the $0 (script name) variable:

dirname $0

But, as matt b pointed out, the path returned is different depending on how the script is called. pwd doesn't do the job because that only tells you what the current directory is, not what directory the script resides in. Additionally, if a symbolic link to a script is executed, you're going to get a (probably relative) path to where the link resides, not the actual script.

Some others have mentioned the readlink command, but at it's simplest, you can use:

dirname $(readlink -f $0)

readlink will resolve the script path to an absolute path from the root of the filesystem. So, any paths containing single or double dots, tildes and/or symbolic links will be resolved to a full path.

Here's a script demonstrating each of these, whatdir.sh:

#!/bin/bash
echo "pwd: `pwd`"
echo "\$0: $0"
echo "basename: `basename $0`"
echo "dirname: `dirname $0`"
echo "dirname/readlink: $(dirname $(readlink -f $0))"

Running this script in my home dir, using a relative path:

>>>$ ./whatdir.sh 
pwd: /Users/phatblat
$0: ./whatdir.sh
basename: whatdir.sh
dirname: .
dirname/readlink: /Users/phatblat

Again, but using the full path to the script:

>>>$ /Users/phatblat/whatdir.sh 
pwd: /Users/phatblat
$0: /Users/phatblat/whatdir.sh
basename: whatdir.sh
dirname: /Users/phatblat
dirname/readlink: /Users/phatblat

Now changing directories:

>>>$ cd /tmp
>>>$ ~/whatdir.sh 
pwd: /tmp
$0: /Users/phatblat/whatdir.sh
basename: whatdir.sh
dirname: /Users/phatblat
dirname/readlink: /Users/phatblat

And finally using a symbolic link to execute the script:

>>>$ ln -s ~/whatdir.sh whatdirlink.sh
>>>$ ./whatdirlink.sh 
pwd: /tmp
$0: ./whatdirlink.sh
basename: whatdirlink.sh
dirname: .
dirname/readlink: /Users/phatblat
link|flag
vote up 0 vote down
ME=`type -p $0`
MDIR="${ME%/*}"
WORK_DIR=$(cd $MDIR && pwd)
link|flag
vote up 0 vote down

This is the only way I've found to tell reliably:

SCRIPT_DIR=$(dirname $(cd "$(dirname "$BASH_SOURCE")"; pwd))

link|flag
vote up 0 vote down

I want to make sure that the script is running in its directory. So cd $(dirname $(which $0) )

After this, if you really want to know where the you are running then run the command below. DIR=$(/usr/bin/pwd)

link|flag
vote up 0 vote down

Hmm, if in the path basename & dirname are just not going to cut it and walking the path is hard (what if parent didn't export PATH!). However, the shell has to have an open handle to its script, and in bash the handle is #255.

SELF=readlink /proc/$$/fd/255

works for me.

EDITOR HELP! WHAT IS HTML ENTITY FOR BACKTICK?!

link|flag
vote up 0 vote down

I usually do:

LIBDIR=$(dirname "$(readlink -f "$(type -P $0 || echo $0)")")
source $LIBDIR/lib.sh
link|flag
vote up 0 vote down

short answer:

`dirname $0`

or

$(dirname $0)
link|flag
vote up 3 vote down
DIRECTORY=$(cd `dirname $0` && pwd)

Is a useful one-liner which will give you the full directory name of the script no matter where it is being called from

link|flag
This is much better than my solution. I've been using this in my code now. – SpoonMeiser Jan 25 at 18:32
Even better: DIR=$(cd $(dirname "$0"); pwd) Will work with spaces and other weird characters – Aaron Digulla Mar 31 at 15:29
vote up 0 vote down

This works in bash-3.2:

path="$( dirname $( which $0 ) )"

Here's an example of its usage:

Say you have a ~/bin directory, which is in your $PATH. You have script A inside this directory. It sources script ~/bin/lib/B. You know where the included script is relative to the original one (the subdirectory lib), but not where it is relative to the user's current directory.

This is solved by the following (inside A):

source "$( dirname $( which $0 ) )/lib/B"

It doesn't matter where the user is or how he calls the script, this will always work.

link|flag
vote up 5 vote down
SCRIPT_PATH="${BASH_SOURCE[0]}";
if([ -h "${SCRIPT_PATH}" ]) then
  while([ -h "${SCRIPT_PATH}" ]) do SCRIPT_PATH=`readlink "${SCRIPT_PATH}"`; done
fi
pushd . > /dev/null
cd `dirname ${SCRIPT_PATH}` > /dev/null
SCRIPT_PATH=`pwd`;
popd  > /dev/null

Works for all versions,including
when called via multple depth soft link,
when script called by command "source" aka . (dot) operator.
when arg $0 is modified from caller.
"./script" "/full/path/to/script" "/some/path/../../another/path/script" "./some/folder/script"
SCRIPT_PATH is given in full path, no matter how it is called.
Just make sure you locate this at start of the script.

This comment and code Copyleft, selectable license under the GPL2.0 or later or CC-SA 3.0 (CreativeCommons Share Alike) or later. (c) 2008. All rights reserved. No warranty of any kind. You have been warned.
http://www.gnu.org/licenses/gpl-2.0.txt
http://creativecommons.org/licenses/by-sa/3.0/
18eedfe1c99df68dc94d4a94712a71aaa8e1e9e36cacf421b9463dd2bbaa02906d0d6656

link|flag
Thanks, I was hoping at least one answer would help with sourced scripts. – Joshua Swink Oct 29 '08 at 9:02
Nice! Could be made shorter replacing "pushd[...] popd /dev/null" by SCRIPT_PATH=readlink -f $(dirname "${VIRTUAL_ENV}"); – e-satis 2 days ago
vote up 0 vote down

This is linux specific, but you could use:

readlink /proc/$$/fd/255

link|flag
vote up -1 vote down

How about traversing the PATH variable until you find the location of your script.

#!/bin/sh
IFS=:
for DIR in ${PATH}
do
   [ -f ${DIR}/`basename $0` ] && echo "found in ${DIR}" && break
done
IFS=
link|flag
vote up 0 vote down

If $0 is an absolute path then you are done, and an alternative to dirname is just iterating through the paths defined in $PATH. The cd trick to make the path absolute can be combined with pushd/popd. Another option for an absolute path is to prefix the path with pwd if the path from dirname/basename is relative. Keep in mind that $0 can be supplied by the user and hence should not be trusted.

/Allan

link|flag
vote up 3 vote down

pwd can be used to find the current working directory, and dirname to find the directory of a particular file (command that was run, is $0, so dirname $0 should give you the directory of the current script).

However, dirname gives precisely the directory portion of the filename, which more likely then not is going to be relative to the current working directory. If your script needs to change directory for some reason, then the output from dirname becomes meaningless.

I suggest the following:

#!/bin/bash

reldir=`dirname $0`
cd $reldir
directory=`pwd`

echo "Directory is $directory"

This way, you get an absolute, rather then relative directory.

Since the script will be run in a seperate bash instance, there is no need to restore the working directory afterwards, but if you do want to change back in your script for some reason, you can easily assign the value of pwd to a variable before you change directory, for future use.

Although just

cd `dirname $0`

solves the specific scenario in the question, I find having the absolute path to more more useful generally.

link|flag
You can do it all in one line like this: DIRECTORY=$(cd dirname $0 && pwd) – fahdshariff Oct 29 '08 at 8:38
vote up 1 vote down
#!/bin/sh
PRG="$0"

# need this for relative symlinks
while [ -h "$PRG" ] ; do
   PRG=`readlink "$PRG"`
done

scriptdir=`dirname "$PRG"`
link|flag
vote up 6 vote down

I don't think this is as easy as others have made it out to be. pwd doesn't work, as the current dir is not necessarily the directory with the script. $0 doesn't always have the info either. Consider the following three ways to invoke a script.

./script

/usr/bin/script

script

In the first and third ways $0 doesn't have the full path info. In the second and third, pwd do not work. The only way to get the dir in the third way would be to run through the path and find the file with the correct match. Basically the code would have to redo what the OS does.

One way to do what you are asking would be to just hardcode the data in the /usr/share dir, and reference it by full path. Data shoudn't be in the /usr/bin dir anyway, so this is probably the thing to do.

link|flag
vote up 5 vote down

You can use $BASH_SOURCE

#!/bin/bash

scriptdir=`dirname $BASH_SOURCE`

Note that you need to use #!/bin/bash and not #!/bin/sh since its a bash extension

link|flag
vote up 0 vote down

Not 100% sure I'm following you (it's late on Friday!), but can you use

dirname $0
link|flag
vote up 1 vote down

You will probably need to use something with 'basename' and then grep out the path from the full program name.

PROG= `basename $0 ` should get you started.

The problem with using 'pwd' is that will only give your the current working directory. If your script changes working directories, this will not give you the directory where the script is located.

link|flag
vote up 0 vote down
`pwd`

(remember the backtics) will get you the current directory from within your bash script.

But I would use the $PWD variable instead.

link|flag
vote up -1 vote down

Are you perhaps looking for 'pwd'?

Assuming that pwd returns the directory of the script and not where you run the script from:

#!/bin/bash
$orpath = 'set original path';
$path = `pwd`;
if [ $path = $orpath]
   then
   # do whatever
fi

EDIT: Disregard this post... it seems my assumptions are faulty.

link|flag
pwd won't give him what he wants if you are not running the script from the directory it is actually in – matt b Sep 12 '08 at 20:51
Your assumption is faulty. – David Locke Sep 12 '08 at 21:13

Your Answer

Get an OpenID
or

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