tests/readlink.py
author Patrick Mezard <pmezard@gmail.com>
Mon, 07 Jul 2008 09:16:09 +0200
changeset 6801 71e339714586
parent 5683 396c7010b0cd
child 10282 08a0f04b56bd
permissions -rwxr-xr-x
mq: fix qrefresh losing copy information (issue 1134)

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