Files
server/usr/lib/python3/dist-packages/twisted/test/process_cmdline.py
2026-01-07 20:52:11 +01:00

10 lines
123 B
Python

"""
Write to stdout the command line args it received, one per line.
"""
import sys
for x in sys.argv[1:]:
print(x)