view python/realpath.py @ 910:98bcf207cda3

remove -dev from k0s-requirements.txt; not compatible with new pip
author Jeff Hammel <k0scist@gmail.com>
date Fri, 12 Apr 2024 07:32:37 -0700
parents f3ab51c79813
children
line wrap: on
line source

#!/usr/bin/env python
import os, sys
for i in sys.argv[1:]:
    print os.path.realpath(i)