tests/readlink.py
author Kostia Balytskyi <ikostia@fb.com>
Mon, 04 Apr 2016 02:05:10 -0700
changeset 28845 5a398627db92
parent 25660 328739ea70c3
child 29175 7bcfb9090c86
permissions -rwxr-xr-x
commands: make --rev and --index compatible in debugobsolete

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