标签: linux bash python-2.6
我基本上有3个文件,
一个包含一些数据并已使用gpg --encrypt加密的python文件,我们将其称为“ example.py.gpg”。
一个bash脚本(我们称其为script.sh),它将对example.py.gpg进行解密,并通过2>&1将数据放入stdout。
和一个Python脚本(我们称其为script.py),它将从bash脚本中接收标准输出。
如何获取python脚本以从shell脚本读取stdout?