tests/readlink.py
author Andrew Shadura <andrew@shadura.me>
Sun, 28 Sep 2014 13:27:40 +0200
changeset 22631 d246eb9cabbc
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
hgk: define bookmark colour explicitly, as Tk 8.6 has changed their meaning

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