用shell写一个100次运行strem.o并记录次数的脚本
时间: 2023-06-01 07:07:48 浏览: 177
shell脚本100例
5星 · 资源好评率100%
可以这样写:
```shell
#!/bin/bash
count=0
while [ $count -lt 100 ]
do
./strem.o
count=$((count+1))
done
echo "strem.o运行了 $count 次"
```
这个脚本使用了一个循环结构,执行了100次 `./strem.o` 命令,并计数器 `count` 递增。循环结束后,输出运行次数。
阅读全文