tests/readlink.py
author Pierre-Yves David <pierre-yves.david@fb.com>
Sun, 28 Sep 2014 21:27:48 -0700
changeset 23360 e06daad65f85
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
bookmark: read pending data when appropriate If we are called by a hook and pending data exists, read it.

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