Skip to content
Advertisement

How to run the bash script in parallel rather than sequentially?

JavaScript

Can someone please guide me I have the above script which is executed when we run the script for instance ./vmSetup.sh "1 2 3" but this is executed sequentially. I had created this script but now I want to run the cases in the script i.e. 1, 2 and 3 in parallel. Can someone also tell me how to run for instance 8 cases in parallel?

Advertisement

Answer

Put each case ... esac statement in the background by ending it with &. Then use wait after the loop to wait for all the background processes to finish.

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement