view python/realpath.py @ 1:f58e8e81e16b

adding program to install config
author k0s <k0scist@gmail.com>
date Thu, 15 Oct 2009 12:40:49 -0400
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)