Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
51ee270876f4e18ec579e57772e16fce146d805e
/
.
/
Lib
/
test
/
subprocessdata
/
qcat.py
blob: fe6f9db25c97014c59948f1643c09f4afaaa2513 [
file
] [
log
] [
blame
]
Gregory P. Smith
51ee270
2010-12-13 07:59:39 +0000
[
diff
] [
blame^
]
1
"""When ran as a script, simulates cat with no arguments."""
2
3
import
sys
4
5
if
__name__
==
"__main__"
:
6
for
line
in
sys
.
stdin
:
7
sys
.
stdout
.
write
(
line
)