Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
d85d0e724714d76c8ab8b42f5293313d1bd3784d
/
.
/
Lib
/
test
/
subprocessdata
/
qcat.py
blob: fe6f9db25c97014c59948f1643c09f4afaaa2513 [
file
] [
log
] [
blame
]
"""When ran as a script, simulates cat with no arguments."""
import
sys
if
__name__
==
"__main__"
:
for
line
in
sys
.
stdin
:
sys
.
stdout
.
write
(
line
)