I have a script.sh file something like this:
python3 utility.py query-1.json
python3 utility.py query-2.json
python3 utility.py query-3.json
.
.
I am currently using sh script.sh to run the script, this however runs each command in a sequential order. I am new to the concepts of parallelism, I would really appreciate any pointers to study more about it in this context, also is there any bash way of achieving multiprocessing or parallelism here ?
&(gnu.org/software/bash/manual/html_node/Job-Control.html).