tests/readlink.py
author Yuya Nishihara <yuya@tcha.org>
Tue, 18 May 2010 18:55:14 +0900
changeset 11207 1d714c1546b5
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
color: bring back colors with pager It's introduced by 3c368a1c962d, but missing in merge changeset at a890cc501501.

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