第 7 章 Pipe

简介:

目录

7.1. stdin
7.2. forkpty
7.3. Popen
7.4. socketpair

7.1. stdin

#!/usr/bin/python
#filename:demo.py

import sys

for line in sys.stdin:
    print line,


#ls -lh | python demo.py
		





原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

目录
相关文章
已解决 BrokenPipeError: [Errno 32] Broken pipe
已解决 BrokenPipeError: [Errno 32] Broken pipe
6283 0
已解决 BrokenPipeError: [Errno 32] Broken pipe
|
1月前
|
安全 Java Linux
如何确定 Broken Pipe 异常是由网络问题还是其他原因引起的
Broken Pipe 异常可能由网络问题或其他原因引起。要确定具体原因,可以检查网络连接状态、防火墙设置和系统日志,同时分析异常发生时的上下文信息。
240 5
|
7月前
|
监控 网络协议 iOS开发
Signal 13 was raised(SIGPIPE管道破裂)
Signal 13 was raised(SIGPIPE管道破裂)
126 0
|
应用服务中间件 nginx
IOException: Broken pipe
IOException: Broken pipe
170 0
56 # 实现 pipe 方法进行拷贝
56 # 实现 pipe 方法进行拷贝
62 0
|
网络协议
av_interleaved_write_frame -32 broken pipe
av_interleaved_write_frame -32 broken pipe
291 0
av_interleaved_write_frame -32 broken pipe
BrokenPipeError: [Errno 32] Broken pipe解决方法
BrokenPipeError: [Errno 32] Broken pipe解决方法
1487 0
|
Python