在bash中并行运行curl进程

在bash中并行运行curl进程

我想当时通过终端中的curl命令发布我的数据,但数千次才能得到好的结果。我写了下面的 bash 代码:

  contents=$(< /Users/Andrea/Desktop/data.txt)
  eval "words=( $contents )”
  arguments=()
  for i in {1..10000}
  do
  arguments+=( "${words[@]}" );
  done;
  curl "${arguments[@]}”;

我的 JSON 数据保存在 data.txt 中。当我执行代码时,需要很长时间才能将所有请求发布到服务器,并且我没有得到很好的转变,另一方面,许多请求在该时间之后发布到服务器,这是没有用的。 data.txt包含以下数据

 --next 
 'https://d.server.com/easy/api/Order' 
 -H 'Connection: keep-alive' 
 -H 'Pragma: no-cache' 
 -H 'Cache-Control: no-cache' 
 -H 'Accept: application/json, text/plain, */*' 
 -H 'Sec-Fetch-Dest: empty'  
 -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like 
 Gecko) Chrome/80.0.3987.132 Safari/537.36' 
 -H 'Content-Type: application/json' 
 -H 'Origin: https://d.server.com' 
 -H 'Sec-Fetch-Site: same-site' 
 -H 'Sec-Fetch-Mode: cors' 
 -H 'Referer: https://d.server.com/' 
 -H 'Accept- Language: en-US,en;q=0.9,fa;q=0.8' 
 --data-binary '{"name":"Andrea","Id":13647,"family":Bianda,"pr":5400}' 
 -- compressed"

现在我想知道如何才能加快这些卷发的发布速度,并在时间开始前一秒尽可能多地发布这些卷发。此卷曲的响应并不重要,在成功的情况下,其他请求会失败,轮到我了。

相关内容