tests/readlink.py
author Matt Mackall <mpm@selenic.com>
Tue, 30 Sep 2014 16:40:10 -0500
changeset 22587 c3c3dd31fe1c
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
help: basic support for showing only specified topic sections For instance, 'hg help config.files' will show only the Files section.

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