How do I use cURL to perform multiple simultaneous requests?

后端 未结 3 991
清酒与你
清酒与你 2020-12-29 04:18

I\'d like to use cURL to test flood handling on my server. Right now I\'m using this on a Windows command line:

curl www.example.com
         


        
3条回答
  •  半阙折子戏
    2020-12-29 04:50

    Curl may not do it itself but bash can.

    curl -o 1.txt -X GET https://foo & curl -o 2.txt -X GET https://foo
    

提交回复
热议问题