tests/readlink.py
author Pulkit Goyal <7895pulkit@gmail.com>
Fri, 13 May 2016 03:09:30 +0530
changeset 29153 90d84e1e427a
parent 25660 328739ea70c3
child 29175 7bcfb9090c86
permissions -rwxr-xr-x
py3: make i18n/posplit use print_function

#!/usr/bin/env python

import errno, os, sys

for f in sys.argv[1:]:
    try:
        print f, '->', os.readlink(f)
    except OSError as err:
        if err.errno != errno.EINVAL:
            raise
        print f, 'not a symlink'

sys.exit(0)