wget学习记录(二)

1.参数-r(--recursive)表示递归处理,讲指定目录下所有文件及子目录一起处理

$ wget -r http://ggiiss.neezyl.com/web-demo/002/

结果:

├── ggiiss.neezyl.com
│   └── web-demo
│       └── 002
│           ├── about.html
│           ├── c.html
│           ├── flash
│           │   └── zhongli.swf
│           ├── flash.html
│           ├── image
│           │   ├── horse.jpg
│           │   └── junye.jpg
│           ├── index.html
│           ├── linux.html
│           ├── main.css
│           └── Scripts
│               └── swfobject_modified.js
2.参数-rH(--no-host-directories)表示不建立主机名称的目录

$ wget -r -nH  http://ggiiss.neezyl.com/web-demo/002/
结果:

 web-demo
    └── 002
        ├── about.html
        ├── c.html
        ├── flash
        │   └── zhongli.swf
        ├── flash.html
        ├── image
        │   ├── horse.jpg
        │   └── junye.jpg
        ├── index.html
        ├── linux.html
        ├── main.css
        └── Scripts
            └── swfobject_modified.js
3.参数-nd(--no-directory)表示不建立目录,所下载的文件会存放在当前目录下;如果有重复会在文件名后依次添加".1",".2"...

结果:

├── about.html
├── c.html
├── flash.html
├── horse.jpg
├── index.html
├── index.html.1
├── junye.jpg
├── linux.html
├── main.css
├── swfobject_modified.js
└── zhongli.swf

P.S,上面的树形目录结构是使用tree命令生成。

你可能感兴趣的:(wget学习记录(二))