view python/realpath.py @ 77:db859ed2585c

more sanity in this script for debugging
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 27 May 2010 22:10:34 -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)