gpt4 book ai didi

CURL:如何将单个 curl 命令运行 100 次?

转载 作者:行者123 更新时间:2023-12-02 06:19:01 25 4
gpt4 key购买 nike

我有以下 curl 命令:
curl -i -H "Content-Type: text/plain"-X POST -d @hundredencoded http:///aaa/bbb/message

对于负载测试,我需要运行这个命令 100 次,我如何使用 CURL 来完成它?

提前致谢。

最佳答案

您可以使用以下脚本来实现它:

#!/bin/bash

for i in $(eval echo {1..$1})
do
curl -i -H 'Content-Type: text/plain' -X POST -d @hundredencoded http:///aaa/bbb/message &
done

关于CURL:如何将单个 curl 命令运行 100 次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16519609/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com