readlink -f does not exist on MacOS. The only working solution for Mac OS I managed to find on the net goes like this:

if [[ $(echo $0 | awk '/^\//') == $0 ]]; then
    ABSPATH=$(dirname $0)
else
    ABSPATH=$PWD/$(dirname $0)
fi

Can anyone suggest anything more elegant to this seemingly trivial task?

link|improve this question

See also the closely related question: stackoverflow.com/questions/1055671/… – jhclark Nov 21 '11 at 19:41
feedback

7 Answers

up vote 7 down vote accepted

Another (also rather ugly) option:

ABSPATH=$(cd "$(dirname "$0")"; pwd)
link|improve this answer
+1, but perhaps ABSPATH=$( cd $(dirname $0); pwd)/$(basename $0) – William Pursell Apr 22 '11 at 18:59
@William Pursell: yes, if you want the path of the script; my understanding (from the example code in the question) was that the question was about the path of its directory. – Gordon Davisson Apr 22 '11 at 19:30
feedback
ABSPATH=$(dirname "$0")
[[ $ABSPATH =~ ^/ ]] || ABSPATH=$PWD$ABSPATH
link|improve this answer
Yeah, this is better, but still kinda ugly :( – Ivan Balashov Apr 22 '11 at 14:50
feedback

If you don't mind using perl:

ABSPATH=$(perl -MCwd=realpath -e "print realpath '$0'")
link|improve this answer
I do mind, actually :)) – Ivan Balashov Apr 22 '11 at 18:01
Thank god you didn't use Java for this :) – Ivan Balashov Apr 22 '11 at 18:02
feedback

Can you try something like this inside your script?

echo $(pwd)/"$0"

In my machine it shows:

/home/barun/codes/ns2/link_down/./test.sh

which is the absolute path name of the shell script.

link|improve this answer
1  
It might work, but try to call this from another directory using relative path – Ivan Balashov Apr 22 '11 at 18:09
Good point, I agree! – Barun Apr 22 '11 at 18:13
feedback

this is what I use, may need a tweak here or there

abspath () 
{ 
    case "${1}" in 
        [./]*)
            local ABSPATH="$(cd ${1%/*}; pwd)/${1##*/}"
            echo "${ABSPATH/\/\///}"
        ;;
        *)
            echo "${PWD}/${1}"
        ;;
    esac
}

This is for any file - and of curse you can just invoke it as abspath ${0}

The first case deals with relative paths by cd-ing to the path and letting pwd figure it out

The second case is for dealing with a local file (where the ${1##/} would not have worked)

This does NOT attempt to undo symlinks!

link|improve this answer
Thanks! Do you know if this is any portable? I mean across sh/bash versions? – Ivan Balashov Apr 22 '11 at 18:05
@Ivan I do not know, the concept portable but you may need to tweak details. I typically use it on bash under OSX & Linux – nhed Apr 22 '11 at 18:20
feedback

Using bash I suggest this approach. You first cd to the directory, then you take the current directory using pwd. After that you must return to the old directory to ensure your script does not create side effects to an other script calling it.

cd "`dirname '$0'`"
dir="`pwd`"
echo $dir
cd - > /dev/null

This solution is safe with complex path. You will never have troubles with spaces or special charaters if you put the quotes.

Note: the /dev/null is require or "cd -" print the path its return to.

link|improve this answer
Seems to be working fine even with /bin/sh – Ivan Balashov Apr 22 '11 at 18:11
feedback

This works as long as it's not a symlink, and is perhaps marginally less ugly:

ABSPATH=$(dirname $(pwd -P $0)/${0#\.\/})
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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