Mercurial > repos > xuebing > sharplabtool
view tools/data_source/echo.py @ 0:9071e359b9a3
Uploaded
author | xuebing |
---|---|
date | Fri, 09 Mar 2012 19:37:19 -0500 |
parents | |
children |
line wrap: on
line source
#!/usr/bin/env python """ Script that just echos the command line. """ import sys assert sys.version_info[:2] >= ( 2, 4 ) print '-' * 20, "<br>" for elem in sys.argv: print elem, "<br>" print '-' * 20, "<br>"