我有一个bash脚本,如下所示:
name=""
while read i; do
if [ -z "$name" ]; then
name="$i"
else
echo "$i"
fi
done < <(python tmp.py)
echo "$name"
其中tmp.py
是这样的:
import time
for i in range(5):
print(i)
time.sleep(.5)
但是问题是bash脚本在开始while循环之前等待python子外壳完成。有没有一种方法可以在生成每一行时读取subshell输出?我需要能够在循环内修改外部脚本环境(例如name
的值),因此while循环不能是子shell。我正在使用bash 5.0。
答案 0 :(得分:2)
不是bash脚本在等待输出,而是python缓冲其输出。每次需要处理输出时都要刷新缓冲区。
您可以通过以下方式修改python代码来做到这一点:
sys.stdout.flush()
或从外部告诉系统仅执行行缓冲(或根本不执行缓冲):
stdbuf -oL python tmp.py