mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
11 lines
177 B
Python
11 lines
177 B
Python
#!/usr/bin/env python2.4
|
|
|
|
"""
|
|
Script that just echos the command line.
|
|
"""
|
|
|
|
import sys
|
|
print '-' * 20, "<br>"
|
|
for elem in sys.argv:
|
|
print elem, "<br>"
|
|
print '-' * 20, "<br>" |