由于cURL的范围功能,此命令输出9页:
curl 'http://www.conquerclub.com/api.php?mode=gamelist&p1un=barrycarter&page=[1-9]'
但是,如果我尝试使用通配符p1un,则会失败:
curl 'http://www.conquerclub.com/api.php?mode=gamelist&p1un=[barrycarter,skurvey]&page=[1-9]'
如何让cURL将列表视为'范围',以便上面检索 我想要的18页?
我知道我可以编写一个shell / Perl脚本来执行此操作,但我很好奇 cURL可以自己完成。
答案 0 :(得分:1)
你需要把它放在花括号
之间curl 'http://www.conquerclub.com/api.php?mode=gamelist&p1un={barrycarter,skurvey}&page=[1-9]'