我有一个文本文档,它包含了一堆这样格式的url:

URL = "sitehere.com"

我要做的是运行curl -K myfile.txt,并将curl返回的响应输出保存到一个文件中。

我该怎么做呢?


当前回答

有点晚了,但我想他们想要的是:

curl -K myfile.txt --trace-ascii output.txt

其他回答

写入在指定文件中接收到的第一个输出(如果存在旧输出则覆盖)。

curl -K myconfig.txt >> output.txt

对于单个文件,您可以使用-O而不是-O filename来使用URL路径的最后一段作为文件名。例子:

curl http://example.com/folder/big-file.iso -O

将结果保存到名为big-file的新文件中。Iso在当前文件夹。通过这种方式,它的工作原理与wget类似,但允许您指定使用wget时不可用的其他curl选项。

您需要在“URL”-o“file_output”之间添加引号,否则,curl将无法识别URL或文本文件名。

格式

curl "url" -o filename

例子

curl "https://en.wikipedia.org/wiki/Quotation_mark" -o output_file.txt

Example_2

curl "https://en.wikipedia.org/wiki/Quotation_mark" > output_file.txt  

一定要加上引号。

有点晚了,但我想他们想要的是:

curl -K myfile.txt --trace-ascii output.txt

如果您希望将输出存储到桌面,请使用git bash中的post命令执行以下命令。这对我很管用。

curl https://localhost:8080
    --request POST 
    --header "Content-Type: application/json" 
    -o "C:\Desktop\test.json"