Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 96d237c40a97f2db2f347f657669ff08c96a005e authored by Georg Brandl on 13 August 2011, 09:59:12 UTC
Update versions in LICENSE files.
Tip revision: 96d237c
qcat.py
"""When ran as a script, simulates cat with no arguments."""

import sys

if __name__ == "__main__":
    for line in sys.stdin:
        sys.stdout.write(line)
back to top