使用wget包含#的地址

时间:2013-03-12 08:02:31

标签: html wget

我尝试使用此命令下载html文件:

wget -r --page-requisites  dowload.html https://www.mysite.com/docs//#!Mydocs;location=page1

这给了我下一个错误:

-bash: !MyDocs: event not found

如何将wget用于包含#?

的地址

1 个答案:

答案 0 :(得分:5)

将URL用单引号括起来。这会阻止shell解析内容。

 wget -r --page-requisites  'dowload.html https://www.mysite.com/docs//#!Mydocs;location=page1'