我想做以下
while read input
do echo "$input"
sleep 1
done < input.txt | program $1 $2
但是在后台运行程序的许多副本,我在想一些带有 for 循环和 & 的东西,但是效果不好,有人知道怎么做吗?
像这样
for (( i=1; i<=3; i++ ))
do
while read input
do echo "$input"
sleep 1
done < input.txt | program $1 $2 &
done
或者让一个不同的 bash 脚本使用 & 调用这个 bash 脚本会更好吗?