Curl Wyślij 100 żądań równoległych

// Send 200 requests in parallel  
1 200 | xargs -n1 -P10  curl "http://localhost:5000/example"
Disgusted Dunlin