tests/readlink.py
author Adrian Buehlmann <adrian@cadifra.com>
Wed, 20 Apr 2011 22:43:31 +0200
changeset 13972 d1f4e7fd970a
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
move path_auditor from util to scmutil

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