view python/realpath.py @ 630:6e6a2adaa9f6

file modes
author Jeff Hammel <k0scist@gmail.com>
date Thu, 20 Feb 2014 12:11:17 -0800
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)