tests/readlink.py
author Patrick Mezard <patrick@mezard.eu>
Mon, 30 Jul 2012 19:26:05 +0200
branchstable
changeset 17292 8da6fe276a23
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
debugobsolete: do not traceback on invalid node identifiers

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