Shell Concurrency Control

Source: Internet
Author: User

Method 1:

#!/bin/bashc=0for i in `seq -w 18 31`;do  while [ $c -ge 3 ];do    c=$(jobs -p |wc -w)    sleep 1s  done  bash run_cal_us_tmp.sh 201407$i &  #echo "`sleep 5s`haha" &  c=$(jobs -p |wc -w)done

Advantages: easy to implement

Disadvantage: If the sleep time is short, the performance overhead is high.

Method 2:

#/bin/bash -x                                             SPEED=50                                                                                                mkfifo tmpfifo                                               exec 6<>tmpfifo                                                                                     for(( i=0;i<5;i++ ));do                                                                                                                 echo $i;                                                                                                   done >&6while read tmp<&6do  echo "haha"donewait                                                                                                     exec >&6-

Shell Concurrency Control

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.