cURL for 循环变量

cURL for 循环变量

有没有办法编写带有 URL 的 for 循环并每次更改 URL?我想追加 &skip=XX有不同的数字要跳过,有没有办法这样写,以便变量位于 URL 中?

答案1

是的,很容易。例如:

for num in 100 200 300; do curl "http://foo.bar&skip=$num" ; done

或者,您可以在文件中包含数字列表(每行一个)并使用 while 循环:

while read num;  do curl "http://foo.bar&skip=$num" ; done < nums.txt

或者甚至使用以下方法生成它们seq

seq 100 100 300 | while read num;  do curl "http://foo.bar&skip=$num" ; done

相关内容