tests/readlink.py
author Augie Fackler <augie@google.com>
Sun, 23 Apr 2017 09:38:10 -0400
branchstable
changeset 32066 40cf693fc07d
parent 29485 6a98f9408a50
child 45849 c102b704edb5
permissions -rwxr-xr-x
tests: pass only one file at a time to tail(1) It looks like the verison on Solaris only tails one file at a time.

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