📌  相关文章
📜  运行命令 x 次数 linux - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:57.635000             🧑  作者: Mango

代码示例1
## run command 10 times 
for i in {1..10}; do commandNameHere; done
 
## run script 20 times
for i in {1..10}; do /path/to/cache.script.sh; done