How can I get the behavior of GNU's readlink -f on a Mac? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T14:25:24Z http://stackoverflow.com/feeds/question/1055671 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1055671/how-can-i-get-the-behavior-of-gnus-readlink-f-on-a-mac 4 How can I get the behavior of GNU's readlink -f on a Mac? troelskn 2009-06-28T20:26:33Z 2009-11-05T06:05:40Z <p>On Linux, the <code>readlink</code> utility accepts an option <code>-f</code> that follows additional links. This doesn't seem to work on Mac and possibly BSD based systems. What would the equivalent be?</p> <p>Here's some debug information:</p> <pre><code>$ which readlink; readlink -f /usr/bin/readlink readlink: illegal option -f usage: readlink [-n] [file ...] </code></pre> http://stackoverflow.com/questions/1055671/how-can-i-get-the-behavior-of-gnus-readlink-f-on-a-mac/1063778#1063778 0 Answer by ennuikiller for How can I get the behavior of GNU's readlink -f on a Mac? ennuikiller 2009-06-30T13:46:02Z 2009-07-12T00:43:17Z <p>The paths to readlink are different between my system and yours. Please try specifying the full path:</p> <blockquote> <p><code>/sw/sbin/readlink -f</code></p> </blockquote> http://stackoverflow.com/questions/1055671/how-can-i-get-the-behavior-of-gnus-readlink-f-on-a-mac/1093969#1093969 0 Answer by Jonas for How can I get the behavior of GNU's readlink -f on a Mac? Jonas 2009-07-07T18:25:41Z 2009-07-07T18:25:41Z <p>maybe an awk script can do it for you?</p> http://stackoverflow.com/questions/1055671/how-can-i-get-the-behavior-of-gnus-readlink-f-on-a-mac/1114180#1114180 -1 Answer by eledu81 for How can I get the behavior of GNU's readlink -f on a Mac? eledu81 2009-07-11T17:14:28Z 2009-07-12T00:43:53Z <p>The readlink from linux it is not the same in MacOSX:</p> <pre><code>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. </code></pre> <p>What is <code>readlink -f</code> supposed to do on Linux?</p> http://stackoverflow.com/questions/1055671/how-can-i-get-the-behavior-of-gnus-readlink-f-on-a-mac/1115074#1115074 5 Answer by Miles for How can I get the behavior of GNU's readlink -f on a Mac? Miles 2009-07-12T01:11:34Z 2009-07-12T20:02:15Z <p>You may be interested in <a href="http://developer.apple.com/documentation/Darwin/Reference/ManPages/man3/realpath.3.html" rel="nofollow"><code>realpath(3)</code></a>, or Python's <a href="http://docs.python.org/library/os.path.html#os.path.realpath" rel="nofollow"><code>os.path.realpath</code></a>. The two aren't exactly the same; the C library call requires that intermediary path components exist, while the Python version does not.</p> <pre><code>$ 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 -&gt; a lrwxr-xr-x 1 miles wheel 1 Jul 11 20:49 c -&gt; b $ python -c 'import os,sys;print os.path.realpath(sys.argv[1])' c /private/tmp/foo/a </code></pre> <p>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:</p> <pre><code>#!/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]) </code></pre> <p>Ironically, the C version of this script ought to be shorter. :)</p> http://stackoverflow.com/questions/1055671/how-can-i-get-the-behavior-of-gnus-readlink-f-on-a-mac/1116890#1116890 1 Answer by Keith Smith for How can I get the behavior of GNU's readlink -f on a Mac? Keith Smith 2009-07-12T20:51:37Z 2009-07-14T01:55:11Z <p>"readlink -f" does two things:</p> <ol> <li>It iterates along a sequence of symlinks until it finds an actual file.</li> <li>It returns that file's <i>canonicalized</i> name---i.e., its absolute pathname.</li> </ol> <p>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":</p> <pre><code>#!/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 </code></pre> <p>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.</p> <p>EDITED to use 'pwd -P' instead of $PWD.</p> http://stackoverflow.com/questions/1055671/how-can-i-get-the-behavior-of-gnus-readlink-f-on-a-mac/1678636#1678636 0 Answer by James for How can I get the behavior of GNU's readlink -f on a Mac? James 2009-11-05T06:05:40Z 2009-11-05T06:05:40Z <p>I made a script called realpath personally which looks a little something like:</p> <pre><code>#!/usr/bin/env python import os,sys print os.path.realpath(sys.argv[0]) </code></pre>