tests/readlink.py
author Mads Kiilerich <madski@unity3d.com>
Wed, 23 Nov 2016 23:47:38 +0100
changeset 30538 c2154979409d
parent 29485 6a98f9408a50
child 45830 c102b704edb5
permissions -rwxr-xr-x
merge: use original file extension for temporary files Some merge tools (like Araxis?) can pick merge mode based on the file extension. That didn't work well when temporary files were given random suffixes. It seems to work better when the random part is before the extension. As usual, when using $output, $local will have the .orig extension. That could perhaps be the subject of another change another day.

#!/usr/bin/env python

from __future__ import absolute_import, print_function

import errno
import os
import sys

for f in sys.argv[1:]:
    try:
        print(f, '->', os.readlink(f))
    except OSError as err:
        if err.errno != errno.EINVAL:
            raise
        print(f, '->', f, 'not a symlink')

sys.exit(0)