标签: python linux shell scripting wget
我有一个由100个网址组成的文本文件。我想将wget与文本文件中的每个URL一个接一个地使用。
答案 0 :(得分:0)
让你开始使用bash:
#!/bin/bash location='the/Location/of/thefile.txt' cat '$location' | while read url do wget $url done