Imported Upstream version 12.1.0
[contrib/python-twisted.git] / twisted / test / process_cmdline.py
1 """Write to stdout the command line args it received, one per line."""
2
3 import sys
4 for x in sys.argv[1:]:
5     print x