Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
possible duplicate of Can a Bash script tell what directory it's stored in? – Dave Jarvis Jan 23 at 1:54

12 Answers

up vote 134 down vote accepted

In bash you should get what you need like this:

#!/bin/bash

BASEDIR=$(dirname $0)
echo $BASEDIR
share|improve this answer
1  
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
1  
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
3  
This will not work if the script is in your path. – sharth Aug 20 '09 at 19:14
2  
This doesn't work if you've called the script via a symbolic link in a different directory. To make that work you need to use readlink as well (see al's answer below) – AndrewR Mar 17 '10 at 23:26
In bash it is safer to use $BASH_SOURCE in lieu of $0, because $0 doesn't always contain the path of the script being invoked, such as when 'sourcing' a script. – mklement Jul 19 '12 at 19:32

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.

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

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

See also: http://stackoverflow.com/a/246128/59087

share|improve this answer
This is the best way. Note the 'checked' answer will not work if you do: ./myscript.sh ...that would report that the directory is "." - this will always give you the absolute path – EdH Jan 23 '11 at 21:19
2  
Note: Not all systems have readlink. That's why I recommended using pushd/popd (built-ins for bash). – The Doctor What May 20 '11 at 14:29
1  
What systems in common use do not have readlink? – Jake Petroules Mar 12 '12 at 2:21
4  
The -f option to readlink does something different on OS X (Lion) and possibly BSD. stackoverflow.com/questions/1055671/… – Ergwun Jun 29 '12 at 1:33
1  
To clarify @Ergwun's comment: -f is not supported on OS X at all (as of Lion); there you can either drop the -f to make do with resolving at most one level of indirection, e.g. pushd "$(dirname "$(readlink "$BASH_SOURCE" || echo "$BASH_SOURCE")")", or you can roll your own recursive symlink-following script as demonstrated in the linked post. – mklement Jul 19 '12 at 19:37
show 1 more comment

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. `

share|improve this answer
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

If you're using bash....

#!/bin/bash

pushd $(dirname "${0}") > /dev/null
basedir=$(pwd -L)
# Use "pwd -P" for the path without links. man bash for more info.
popd > /dev/null

echo "${basedir}"
share|improve this answer
2  
You can replace the pushd/popd with cd $(dirname "${0}") and cd - to make it work on other shells, if they have a pwd -L. – The Doctor What May 20 '11 at 14:30

As theMarko suggests:

BASEDIR=$(dirname $0)
echo $BASEDIR

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:

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

if [ $script_dir = '.' ]
then
script_dir="$current_dir"
fi

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.

share|improve this answer
cd $(dirname $(readlink -f $0))
share|improve this answer

Inspired by blueyed’s answer

read < <(readlink -f $0 | xargs dirname)
cd $REPLY
share|improve this answer

An earlier comment on an answer said it, but it is easy to miss among all the other answers.

When using bash:

echo this file: $BASH_SOURCE
echo this dir: `dirname $BASH_SOURCE`

Bash Reference Manual, 5.2 Bash Variables

share|improve this answer

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.

share|improve this answer
1  
If you call the script like './foo', then pwd will be the current directory. – Powerlord Dec 17 '08 at 18:25

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)

share|improve this answer

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

share|improve this answer

This checks if directory exists and is writable

if [ -d "$Directory" -a -w "$Directory" ]
then
    #Statements
fi

-Muralikrishna.B

share|improve this answer

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.

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