码迷,mamicode.com
首页 > 编程语言 > 详细

shell脚本实现多线程

时间:2016-05-15 12:42:46      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:shell 多线程

1:

#!/bin/bash
for i in $(seq 1 1000)do
   ( Generating random numbers here , sorting  and outputting to file$i.txt ) &
   if (( $i % 10 == 0 )); then wait; fi # Limit to 10 concurrent subshells.
done
wait

2:

for ARG in  $*; do

    command $ARG &

    NPROC=$(($NPROC+1))

    if [ "$NPROC" -ge 4 ]; then

        wait

        NPROC=0

    fi

done


本文出自 “行者” 博客,请务必保留此出处http://223228686.blog.51cto.com/2222284/1773511

shell脚本实现多线程

标签:shell 多线程

原文地址:http://223228686.blog.51cto.com/2222284/1773511

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!