如何在bash shell中执行for循环生成的curl命令?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在bash shell中执行for循环生成的curl命令?相关的知识,希望对你有一定的参考价值。
我从for循环生成了curl命令。
for ((i=1; i<=1000; i++)); do
echo "curl http://example.com/page.php?page=$i"; done
现在它打印出所需的curl命令。而不是只打印curl命令我想执行curl命令。我如何使它工作?
提前致谢。
答案
我通过简单地删除@PesaThe建议的echo命令解决了。
for ((i=1; i<=1000; i++)); do
curl "http://example.com/page.php?page=$i"; done
谢谢@PesaThe。
以上是关于如何在bash shell中执行for循环生成的curl命令?的主要内容,如果未能解决你的问题,请参考以下文章