tests/readlink.py
author Siddharth Agarwal <sid0@fb.com>
Tue, 17 Mar 2015 15:46:30 -0700
changeset 24432 e22248f6d257
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
commands.diff: add support for diffs relative to a subdirectory Previous patches added all the backend support for this. This exposes this option in the UI.

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