Created
January 13, 2015 10:24
-
-
Save nuada/a695db9ba9be201ecb23 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| max_jobs=4 | |
| for i in $(seq 10); do | |
| while [[ $(jobs | wc --lines) -ge ${max_jobs} ]]; do | |
| sleep 1 | |
| done | |
| # Do the job | |
| ( | |
| echo "Job $i" | |
| sleep $(((RANDOM % 5)+1)) | |
| echo "Job $i done" | |
| ) & | |
| done | |
| wait |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment