vote up 4 vote down star

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 ...]
flag

6 Answers

vote up 1 vote down check

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

link|flag
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 at 23:36
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 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 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 at 15:51
Yes: mkdir a; mkdir a/b; mkdir x; ln -s ../a x/y. Now assuming that the above script is canonicalize, running ./canonicalize x/y/b does not give the same output as readlink -f x/y/b. – troelskn Jul 13 at 21:13
show 3 more comments
vote up 5 vote down

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. :)

link|flag
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 at 10:08
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 at 11:51
vote up 0 vote down

maybe an awk script can do it for you?

link|flag
I don't think so. I could use another general purpose programming or scripting language, but I'd prefer something more lightweight. – troelskn Jul 7 at 20:26
vote up 0 vote down

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

/sw/sbin/readlink -f

link|flag
And what - exactly - is the difference between /sw/sbin and /usr/bin? And why do the two binaries differ? – troelskn Jun 30 at 18:59
finkproject.org/doc/packaging/… – ennuikiller Jul 1 at 13:58
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 at 11:01
vote up 0 vote down

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[0])
link|flag
vote up -1 vote down

The readlink from linux it is not the same in MacOSX:

STAT(1)                   BSD General Commands Manual                  STAT(1)

NAME
     readlink, stat -- display file status

SYNOPSIS
     stat [-FLnq] [-f format | -l | -r | -s | -x] [-t timefmt] [file ...]
     readlink [-n] [file ...]

DESCRIPTION
     The stat utility displays information about the file pointed to by file.
     Read, write or execute permissions of the named file are not required,
     but all directories listed in the path name leading to the file must be
     searchable.  If no argument is given, stat displays information about the
     file descriptor for standard input.

     When invoked as readlink, only the target of the symbolic link is
     printed.  If the given argument is not a symbolic link, readlink will
     print nothing and exit with an error.

What is readlink -f supposed to do on Linux?

link|flag

Your Answer

Get an OpenID
or

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