My question is how change this code so it will use only 4 threads?
TESTS="a b c d e"
for f in $TESTS; do
t=$[ ( $RANDOM % 5 ) + 1 ]
sleep $t && echo $f $t &
done
wait
|
My question is how change this code so it will use only 4 threads?
|
|||||
|
|
Interesting question. I tried to use xargs for this and I found a way. Try this:
The output will look like this:
Since its different processes the order of execution might not follow the commands in the order you submit them. As you can see 2 started before 1. |
|||
|
|
|
Quick and dirty solution: insert this line somewhere inside your
(assumes you don't already have other background jobs running in the same shell) |
|||||
|
|
I have made an other experimentation for this question using
The output of this command will be:
|
|||
|
|
|
You can do something like this by using the
|
|||||||
|
|
GNU Parallel is designed for this kind of tasks:
Watch the intro videos to learn more: |
|||
|
|
|
This tested script runs 5 jobs at a time and will restart a new job as soon as it does (due to the kill of the sleep 10.9 when we get a SIGCHLD. A simpler version of this could use direct polling (change the sleep 10.9 to sleep 1 and get rid of the trap).
|
|||
|
|