Shell脚本在Pintos中多次“进行检查”

时间:2018-11-08 03:34:11

标签: shell pintos

现在,我正在与Pintos合作, 我想通过编写一个shell脚本一次多次“进行检查”。

我以为是用以下命令制作一个test-five.sh文件

#!/bin/bash/

for i in 1 2 3 4 5
do
    make -j 8 check
done

我认为先运行此test-five.sh文件,然后再执行 test-five.sh> result.txt 会没事的。

但是,我无法确定应该将该文件放在哪个目录中,并且 如果这样做是正确的方法。

1 个答案:

答案 0 :(得分:0)

这里是一线循环,计数为5:

for i in {1..5}; do echo 'command output'; done

针对您的情况:

for i in {1..5}; do make -j 8 check; done