view tests/readlink.py @ 10003:a1217735dffb

Makefile: help/ was moved in f91e5630ce7e update paths to match
author Martin Geisler <mg@lazybytes.net>
date Thu, 03 Dec 2009 22:54:33 +0100
parents 396c7010b0cd
children 08a0f04b56bd
line wrap: on
line source

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