Files
server/opt/plesk/python/3/lib/python3.10/test/subprocessdata/qcat.py
cutemeli 0bfc6c8425 Initial
2025-12-22 10:32:59 +00:00

8 lines
159 B
Python

"""When ran as a script, simulates cat with no arguments."""
import sys
if __name__ == "__main__":
for line in sys.stdin:
sys.stdout.write(line)