tests/readlink.py
author Matt Mackall <mpm@selenic.com>
Mon, 11 Feb 2008 16:13:43 -0600
changeset 6074 59a9dc9562e2
parent 5683 396c7010b0cd
child 10282 08a0f04b56bd
permissions -rwxr-xr-x
ignore: split up huge patterns Some versions of Python silently mishandle large regexes, so split them up at a conservative 20k.

#!/usr/bin/env python

import errno, os, sys

for f in sys.argv[1:]:
    try:
        print f, '->', os.readlink(f)
    except OSError, err:
        if err.errno != errno.EINVAL: raise
        print f, 'not a symlink'

sys.exit(0)