tests/readlink.py
author Adrian Buehlmann <adrian@cadifra.com>
Mon, 11 Jun 2012 11:15:14 +0200
changeset 16953 634ad0b24ba2
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
debugwalk: observe ui.slash config option

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