mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 22:06:53 +08:00
14 lines
216 B
Python
14 lines
216 B
Python
#!/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>" |