blob: fe6f9db25c97014c59948f1643c09f4afaaa2513 [file] [log] [blame]
Gregory P. Smith51ee2702010-12-13 07:59:39 +00001"""When ran as a script, simulates cat with no arguments."""
2
3import sys
4
5if __name__ == "__main__":
6 for line in sys.stdin:
7 sys.stdout.write(line)