如何使用wget自动执行Web浏览任务?

时间:2017-04-15 11:21:18

标签: python linux shell scripting wget

我有一个由100个网址组成的文本文件。我想将wget与文本文件中的每个URL一个接一个地使用。

1 个答案:

答案 0 :(得分:0)

让你开始使用bash:

#!/bin/bash
location='the/Location/of/thefile.txt'
cat '$location' | while read url
do 
    wget $url

done