tests/readlink.py
author Dirkjan Ochtman <dirkjan@ochtman.nl>
Sun, 30 Nov 2008 18:38:42 +0100
changeset 7445 29c6e71b1c73
parent 5683 396c7010b0cd
child 10282 08a0f04b56bd
permissions -rwxr-xr-x
gitweb: fix graph again after previous faulty commit (1e0677756f60)

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