如何在bash shell中执行for循环生成的curl命令?

时间:2018-03-03 15:04:57

标签: bash macos shell curl

我从for循环生成了curl命令。

for ((i=1; i<=1000; i++)); do  
echo "curl http://example.com/page.php?page=$i"; done 

现在它打印出所需的curl命令。而不是只打印curl命令我想执行curl命令。我如何使其发挥作用?

提前致谢。

1 个答案:

答案 0 :(得分:0)

我通过简单地删除@PesaThe建议的echo命令来解决。

for ((i=1; i<=1000; i++)); do  
curl "http://example.com/page.php?page=$i"; done 

谢谢@PesaThe。