Link to home
Start Free TrialLog in
Avatar of skij
skijFlag for Canada

asked on

Execute multiple cURL requests at the same instant

Using shell or BASH, how can I initiate three http requests using cURL at exactly the same time?  I want all requests to be initiated at the same time.  No response is needed.
curl -s --request GET 'http://www.example.com/?q=1' >/dev/null
curl -s --request GET 'http://www.example.com/?q=2' >/dev/null
curl -s --request GET 'http://www.example.com/?q=3' >/dev/null

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of egarciat
egarciat

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial