Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,所以,我有一个关于 python 和 linux 的快速问题。
我有一个程序可以无限期地收集数据并将其输出到标准输出。我需要解析这些数据,并且我编写了一个 python 程序来做这件事。但是,我不能先将这些数据保存到文件中,因为它产生的输出太多而无法保存到磁盘。有没有办法使用重定向以某种方式将此输出传递到程序中?
例子:
python parser.py < ./dataCollector.sh
关闭,但您想要一个实际的管道而不是 shell 重定向:
./dataCollector.sh | python parser.py