tests/readlink.py
author Pierre-Yves David <pierre-yves.david@fb.com>
Wed, 20 May 2015 10:58:29 -0500
changeset 25456 408b7979bf03
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
sshpeer: allow write operations through double pipe We have a shiny toy, lets make it wider.

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