Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Run python commands in parallel in Linux shell scripting

I have a script which gets input from the user through command line arguments. It processes the arguments and starts running python commands. For Example:

./run.sh p1 p2 p3 p4
python abc.py p1 p4
python xyz.py p2 p3 

where p1, p2, p3 and p4 can be of any type.

I need to run both of these python commands in parallel and in two different terminals. How can I do it so that I don't need to wait for 1 command to finish in order to start the next command?

I tried GNU parallel but it doesn't seem to work.

like image 338
S_Ananth Avatar asked Aug 04 '26 00:08

S_Ananth


1 Answers

Try running each process in the background by adding & to the end of the command.

python script1.py arg1 arg2 &
python script2.py arg1 arg2 &

echo "Running scripts in parallel"
wait # This will wait until both scripts finish
echo "Script done running"

More Info

like image 192
pferate Avatar answered Aug 06 '26 14:08

pferate



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!