tests/readlink.py
author Kevin Bullock <kbullock@ringworld.org>
Tue, 19 Feb 2013 13:35:39 -0600
changeset 18706 f17680992123
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
merge with stable

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