I would like to create linux shell script to run CURL command in parallel
For example: I have three command like
- curl -s http://localhost/process.php?id=1
- curl -s http://localhost/process.php?id=2
- curl -s http://localhost/process.php?id=3
I want to call above three command simultaneously.
Any help is appreciated.