卷曲-从文本文件加载多个地址

时间:2018-10-14 10:02:54

标签: html curl http-headers

我希望curl从文本文件加载地址以进行头请求。 我正在尝试这种方式:

curl -I -b cookies.txt -D results.txt -A "Mozilla/5.0 " -K mypage.txt

在page.txt中,我这样写:

url = "http://example.com/cats http://example.com/birds http://example.com/dogs"

但是它不起作用。那么哪里出问题了?

1 个答案:

答案 0 :(得分:0)

尝试分别指定每个网址,例如:

url = "http://example.com/cats"
url = "http://example.com/birds"
url = "http://example.com/dogs"

当我尝试时它起作用。