我有一个输出行的命令。我想与 Make 并行处理每一行。
target:
command > $@
所以现在,我有一个名为“目标”的文件。在shell中,我会做
while read -r line; do
echo "$line"
done < target
我有一个输出行的命令。我想与 Make 并行处理每一行。
target:
command > $@
所以现在,我有一个名为“目标”的文件。在shell中,我会做
while read -r line; do
echo "$line"
done < target