Files
galaxy/tools/data_source/echo.py
T

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>"