tests/readlink.py
author Matt Mackall <mpm@selenic.com>
Tue, 02 Apr 2013 01:05:26 -0500
branchstable
changeset 18856 c9d1241ba11d
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
Added tag 2.5.3 for changeset 50c922c1b514

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