Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

On Linux, the readlink utility accepts an option -f that follows additional links. This doesn't seem to work on Mac and possibly BSD based systems. What would the equivalent be?

Here's some debug information:

$ which readlink; readlink -f
/usr/bin/readlink
readlink: illegal option -f
usage: readlink [-n] [file ...]
share|improve this question
A bit late, but your question is missing any mentioning of the shell you use. This is relevant, because readlink can be a builtin or an external command. – 0xC0000022L Feb 8 '12 at 20:26
That would explain the difference perhaps. I'm fairly sure I used bash on both occasions though. – troelskn Feb 9 '12 at 8:33

9 Answers

up vote 32 down vote accepted
+200

"readlink -f" does two things:

  1. It iterates along a sequence of symlinks until it finds an actual file.
  2. It returns that file's canonicalized name---i.e., its absolute pathname.

If you want to, you can just build a shell script that uses vanilla readlink behavior to achieve the same thing. Here's an example. Obviously you could insert this in your own script where you'd like to call "readlink -f":

#!/bin/sh

TARGET_FILE=$1

cd `dirname $TARGET_FILE`
TARGET_FILE=`basename $TARGET_FILE`

# Iterate down a (possible) chain of symlinks
while [ -L "$TARGET_FILE" ]
do
    TARGET_FILE=`readlink $TARGET_FILE`
    cd `dirname $TARGET_FILE`
    TARGET_FILE=`basename $TARGET_FILE`
done

# Compute the canonicalized name by finding the physical path 
# for the directory we're in and appending the target file.
PHYS_DIR=`pwd -P`
RESULT=$PHYS_DIR/$TARGET_FILE
echo $RESULT

Note that this doesn't include any error handling. Of particular importance, it doesn't detect symlink cycles. A simple way to do this would be to count the number of times you go around the loop and fail if you hit an improbably large number, such as 1,000.

EDITED to use 'pwd -P' instead of $PWD.

share|improve this answer
As far as I can tell, that won't work if a parent dir of the path is a symlink. Eg. if foo -> /var/cux, then foo/bar won't be resolved, because bar isn't a link, although foo is. – troelskn Jul 12 '09 at 23:36
1  
Ah. Yes. It's not as simple but you can update the above script to deal with that. I'll edit (rewrite, really) the answer accordingly. – Keith Smith Jul 13 '09 at 12:36
Well, a link could be anywhere in the path. I guess the script could iterate over each part of the path, but it does become a bit complicated then. – troelskn Jul 13 '09 at 15:27
A link earlier in the path shouldn't matter. All of the tools and system calls that operate on paths automatically follow symlinks in pathnames. In testing on my system, the above script and "readlink -f" produce the same results when there is a symlink in the middle of a path---either the argument or in another symlink. Can you provide an example where it's a problem? – Keith Smith Jul 13 '09 at 15:51
1  
Great solution, but it doesn't deal properly with paths that need escaping, such as file or directory names with embedded spaces. To remedy that, use cd "$(dirname "$TARGET_FILE")" and TARGET_FILE=$(readlink "$TARGET_FILE") and TARGET_FILE=$(basename "$TARGET_FILE") in the appropriate places in the above code. – mklement Jul 19 '12 at 22:02
show 6 more comments

macports and homebrew provide a coreutils package containing greadlink (GNU readlink). credit to Michael Kallweitt post in mackb.com

share|improve this answer
3  
Same for Homebrew; coreutils provides greadlink. – user51928 Apr 13 '12 at 19:26
very helpful! thanks! – zach Nov 29 '12 at 23:19

You may be interested in realpath(3), or Python's os.path.realpath. The two aren't exactly the same; the C library call requires that intermediary path components exist, while the Python version does not.

$ pwd
/tmp/foo
$ ls -l
total 16
-rw-r--r--  1 miles    wheel  0 Jul 11 21:08 a
lrwxr-xr-x  1 miles    wheel  1 Jul 11 20:49 b -> a
lrwxr-xr-x  1 miles    wheel  1 Jul 11 20:49 c -> b
$ python -c 'import os,sys;print os.path.realpath(sys.argv[1])' c
/private/tmp/foo/a

I know you said you'd prefer something more lightweight than another scripting language, but just in case compiling a binary is insufferable, you can use Python and ctypes (available on Mac OS X 10.5) to wrap the library call:

#!/usr/bin/python

import ctypes, sys

libc = ctypes.CDLL('libc.dylib')
libc.realpath.restype = ctypes.c_char_p
libc.__error.restype = ctypes.POINTER(ctypes.c_int)
libc.strerror.restype = ctypes.c_char_p

def realpath(path):
    buffer = ctypes.create_string_buffer(1024) # PATH_MAX
    if libc.realpath(path, buffer):
        return buffer.value
    else:
        errno = libc.__error().contents.value
        raise OSError(errno, "%s: %s" % (libc.strerror(errno), buffer.value))

if __name__ == '__main__':
    print realpath(sys.argv[1])

Ironically, the C version of this script ought to be shorter. :)

share|improve this answer
Yes, realpath is indeed what I want. But it seems rather awkward that I have to compile a binary to get this function from a shell script. – troelskn Jul 12 '09 at 10:08
1  
Why not use the Python one-liner in the shell script then? (Not so different from a one-line call to readlink itself, is it?) – Telemachus Jul 12 '09 at 11:51

I made a script called realpath personally which looks a little something like:

#!/usr/bin/env python
import os,sys
print os.path.realpath(sys.argv[1])
share|improve this answer
You should change that to sys.argv[1] if you want the script to print the realpath of the first argument. sys.argv[0] just prints the real path of the pyton script itself, which is not very useful. – Jakob Egger Feb 9 '11 at 11:07
4  
Here's the alias version, for ~/.profile: alias realpath="python -c 'import os, sys; print os.path.realpath(sys.argv[1])'" – jwhitlock Mar 20 '11 at 1:55

What about this?

function readlink() {
  DIR=$(echo "${1%/*}")
  (cd "$DIR" && echo "$(pwd -P)")
}
share|improve this answer
This is the only solution that works for me; I need to parse paths like ../../../ -> / – keflavich Dec 27 '12 at 2:01

Here is a portable shell function that should work in ANY Bourne comparable shell. It will resolve the relative path punctuation ".. or ." and dereference symbolic links.

If for some reason you do not have a realpath(1) command, or readlink(1) this can be aliased.

which realpath || alias realpath='real_path'

Enjoy:

real_path () {
  OIFS=$IFS
  IFS='/'
  for I in $1
  do
    # Resolve relative path punctuation.
    if [ "$I" = "." ] || [ -z "$I" ]
      then continue
    elif [ "$I" = ".." ]
      then FOO="${FOO%%/${FOO##*/}}"
           continue
      else FOO="${FOO}/${I}"
    fi

    ## Resolve symbolic links
    if [ -h "$FOO" ]
    then
    IFS=$OIFS
    set `ls -l "$FOO"`
    while shift ;
    do
      if [ "$1" = "->" ]
        then FOO=$2
             shift $#
             break
      fi
    done
    IFS='/'
    fi
  done
  IFS=$OIFS
  echo "$FOO"
}

also, just in case anybody is interested here is how to implement basename and dirname in 100% pure shell code:

## http://www.opengroup.org/onlinepubs/000095399/functions/dirname.html
# the dir name excludes the least portion behind the last slash.
dir_name () {
  echo "${1%/*}"
}

## http://www.opengroup.org/onlinepubs/000095399/functions/basename.html
# the base name excludes the greatest portion in front of the last slash.
base_name () {
  echo "${1##*/}"
}

You can find updated version of this shell code at my google site: http://sites.google.com/site/jdisnard/realpath

EDIT: This code is licensed under the terms of the 2-clause (freeBSD style) license. A copy of the license may be found by following the above hyperlink to my site.

share|improve this answer
Would you mind putting a license statement on your page? If no license is explicitly specified, nobody can use that code anywhere.. – 0x89 Jan 12 '11 at 14:45
Thanks for the tip. Let it be known that the above code is free (as in beer and freedom) in accordance to the 2-clause BSD license. I have attached a copy of the 2-clause BSD license to my web page as you requested. thanks and enjoy. – masta Jan 12 '11 at 18:01
this is awesome – wprl Apr 14 '11 at 19:46
The real_path returns /filename instead of /path/to/filename on Mac OS X Lion in the bash shell. – Barry Aug 12 '11 at 9:04
@Barry The same happens on OSX Snow Leopard. Worse, successive calls to real_path() concatenate output! – Dominique Jan 6 '12 at 2:02
show 1 more comment
  1. Install homebrew
  2. Run "brew install coreutils"
  3. Run "greadlink -f path"

greadlink is the gnu readlink that implements -f. You can use macports or others as well, I prefer homebrew.

share|improve this answer

The paths to readlink are different between my system and yours. Please try specifying the full path:

/sw/sbin/readlink -f

share|improve this answer
And what - exactly - is the difference between /sw/sbin and /usr/bin? And why do the two binaries differ? – troelskn Jun 30 '09 at 18:59
2  
1  
Aha .. so fink contains a replacement for readlink that is gnu compatible. That's nice to know, but it doesn't solve my problem, since I need my script to run on other peoples machine, and I can't require them to install fink for that. – troelskn Jul 2 '09 at 11:01

Perl has a readlink function (e.g. How do I copy symbolic links in Perl?). This works across most platforms, including OS X:

perl -e "print readlink '/path/to/link'"

For example:

$ mkdir -p a/b/c
$ ln -s a/b/c x
$ perl -e "print readlink 'x'"
a/b/c
share|improve this answer
2  
This does the same as readlink without the -f option - no recursion, no absolute path -, so you might as well use readlink directly. – mklement Jul 19 '12 at 21:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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