microproduct/atmosphericDelay/ISCEApp/site-packages/twisted/test/process_cmdline.py

12 lines
162 B
Python
Raw Normal View History

2023-08-28 10:17:29 +00:00
"""
Write to stdout the command line args it received, one per line.
"""
from __future__ import print_function
import sys
for x in sys.argv[1:]:
print(x)