Linux

CURL - 保存多個 HTTP 響應

  • November 24, 2011

我了解到我們可以通過以下方式使用 CURL 發送多個 HTTP 請求:

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

或這個:

xargs curl -I < url-list.txt

我們如何才能將我們得到的所有響應保存到不同的文件中?

您可以使用-o命令行選項將輸出寫入文件而不是標準輸出。您可以使用多個-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

它應該可以按您的意願工作。

$ 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

引用自:https://serverfault.com/questions/334261