tests/readlink.py
author Brendan Cully <brendan@kublai.com>
Mon, 29 Jun 2009 09:00:37 -0700
changeset 8960 8a5657ecdaaf
parent 5683 396c7010b0cd
child 10282 08a0f04b56bd
permissions -rwxr-xr-x
Merge with crew

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