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.
我有两个文件:myPython.py && myBash.sh
我想让 myPython.py 输出一个 XML 文件,myBash.sh 接收这个 XML 文件作为输入,然后对它做某事。
我想在控制台中做的是这样的
myPython.py | myBash.sh
问题是:如何在 python 文件中返回一个值?以及如何在管道中接收 myBash.sh 的 XML 文件?
谢谢
如果您只是做一个简单的“打印”,它应该可以工作。例如:
python -c 'print "foo"' | cat