tests/readlink.py
author Wagner Bruna <wbruna@softwareexpress.com.br>
Fri, 17 Jun 2011 19:14:47 -0300
branchstable
changeset 14691 b1efd75cdafe
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
help/config: mention [revsetalias] 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)