mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-04 11:08:21 +00:00
12 lines
162 B
Python
12 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)
|