wget --user user --password pass -r -np -nH -R index.html http://url/including/files/you/want/to/download/
各个参数的含义:
-r : 遍历所有子目录
-np : 不到上一层子目录去
-nH : 不要将文件保存到主机名文件夹
-R index.html : 不下载 index.html 文件
-user 用户名
-password 密码
wget --user user --password pass -r -np -nH -R index.html http://url/including/files/you/want/to/download/
各个参数的含义:
-r : 遍历所有子目录
-np : 不到上一层子目录去
-nH : 不要将文件保存到主机名文件夹
-R index.html : 不下载 index.html 文件
-user 用户名
-password 密码