HubobelsPython/venv/lib/python3.9/site-packages/twisted/test/process_cmdline.py
2022-01-02 21:50:48 +01:00

11 lines
162 B
Python

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