我希望从以下网页中检索一系列文本文件:
http://www.wunderground.com/history/airport/VAAH/2013/06/13/DailyHistory.html
我想在UNIX中使用'wget'命令对此页面指向的一系列文件(位于页面底部的“逗号分隔文件”链接)自动执行检索,例如:
http://www.wunderground.com/history/airport/VAAH/2013/06/13/DailyHistory.html?format=1
但是,在尝试使用以下参数时:
'wget http://www.wunderground.com/history/airport/VAAH/2013/06/13/DailyHistory.html?format=1'
UNIX回来并说'wget:No match。'
可能这是因为'?format = 1',但我不确定。有没有办法检索文件?
感谢您的帮助。
答案 0 :(得分:0)
没关系!我忘记了引号。因此,如果其他人遇到此问题,请使用
wget“[你的地址]”
而不是
wget [你的地址]