tests/readlink.py
author Matt Mackall <mpm@selenic.com>
Fri, 08 Feb 2013 22:58:58 +0000
branchstable
changeset 18578 7511d4df752e
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
merge with i18n

#!/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)