CURL - 保存多个 HTTP 响应

CURL - 保存多个 HTTP 响应

我了解到,我们可以通过执行以下操作使用 CURL 发送多个 HTTP 请求:

curl -I http://linuxbyexample.co.nr http://lne.blogdns.com/lbe

或这个:

xargs curl -I < url-list.txt

我们如何才能将收到的所有回复(每个回复都保存到不同的文件中)?

答案1

您可以使用-o命令行选项将输出写入文件而不是 stdout。您可以使用多个-os,例如

curl -I http://linuxbyexample.co.nr lbe.co.nr.txt http://lne.blogdns.com/lbe -o lne.txt

如果你像这样格式化 urls-list.txt

http://serverfault.com -o serverfault.com.txt
http://example.com -o example.com.txt

它应该可以按你想要的方式工作。

答案2

$ cat urls-list.txt 
http://linuxbyexample.co.nr 
http://lne.blogdns.com/lbe

$ while read u; do \
    curl -I $u -o $(echo $u | sed 's/http:\/\///' | tr '/' '_').header; \
done < urls-list.txt

$ cat linuxbyexample.co.nr.header 
HTTP/1.1 200 OK
Date: Thu, 24 Nov 2011 03:15:19 GMT
Server: LiteSpeed
Connection: close
X-Powered-By: PHP/5.2.10
Content-Type: text/html
X-Powered-By: PleskLin

相关内容