Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
现在,我正在使用 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 就可以了。
但是,我无法弄清楚我应该将这个文件放在哪个目录,以及这是否是正确的做法。
这是一个计数为 5 的单行 for 循环:
for i in {1..5}; do echo 'command output'; done
对于您的情况:
for i in {1..5}; do make -j 8 check; done