代码片段:Shell脚本实现重复执行和多进程
Posted pepetang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代码片段:Shell脚本实现重复执行和多进程相关的知识,希望对你有一定的参考价值。
1 #重复执行 2 function run() { 3 number=$1 4 shift 5 for n in $(seq $number); do 6 [email protected] 7 done 8 } 9 10 #多进程 11 function bg_run() { 12 number=$1 13 shift 14 for n in $(seq $number); do 15 [email protected] & 16 done 17 }
以上是关于代码片段:Shell脚本实现重复执行和多进程的主要内容,如果未能解决你的问题,请参考以下文章
Python高阶(一) - 单线程、多线程和多进程的效率对比测试
Linux - 通过操作文件锁来实现shell script进程单实例