view tests/readlink.py @ 51386:d0f6b96d1fb8

crecord: add handle(next|prev)search functions These are now just simple wrappers around `searchdirection`
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Wed, 14 Feb 2024 22:54:21 -0500
parents 6000f5b25c9b
children
line wrap: on
line source

#!/usr/bin/env python3


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)