10.2. 下载工具
日期:2020-08-05
浏览:
97 评论:0
核心提示:文章目录10.2. 下载工具10.2.1. wget10.2.1.1. 常用10.2.1.2. 整站下载10.2.1.3. 指定参数10.2.2. curl10.2.2.1. 常用10.2.2.2. 正则10.2. 下载工具10.2.1. wget10.2.1.1. 常用普通下载 wget http://example.com/file.iso指定保存文件名 wget ‐‐output-document=myname.iso http://example.com/file.iso保存到指定目录_.
文章目录
- 10.2. 下载工具
- 10.2.1. wget
- 10.2.1.1. 常用
- 10.2.1.2. 整站下载
- 10.2.1.3. 指定参数
- 10.2.2. curl
- 10.2.2.1. 常用
- 10.2.2.2. 正则
10.2. 下载工具
10.2.1. wget
10.2.1.1. 常用
- 普通下载
wget http://example.com/file.iso
- 指定保存文件名
wget ‐‐output-document=myname.iso http://example.com/file.iso
- 保存到指定目录
wget ‐‐directory-prefix=folder/subfolder http://example.com/file.iso
- 大文件断点续传
wget ‐‐continue http://example.com/big.file.iso
- 下载指定文件中的url列表
wget ‐‐input list-of-file-urls.txt
- 下载指定数字列表的多个文件
wget http://example.com/images/{1..20}.jpg
- 下载web页面的所有资源
wget ‐‐page-requisites ‐‐span-hosts ‐‐convert-links ‐‐adjust-extension http://example.com/dir/file
10.2.1.2. 整站下载
- 下载所有链接的页面和文件
wget ‐‐execute robots=off ‐‐recursive ‐‐no-parent ‐‐continue ‐‐no-clobber http://example.com/
- 下载指定后缀的文件
wget ‐‐level=1 ‐‐recursive ‐‐no-parent ‐‐accept mp3,MP3 http://example.com/mp3/
- 排除指定目录下载
wget ‐‐recursive ‐‐no-clobber ‐‐no-parent ‐‐exclude-directories /forums,/support http://example.com
10.2.1.3. 指定参数
- user agent
‐‐user-agent="Mozilla/5.0 Firefox/4.0.1"
- basic auth
‐‐http-user=user ‐‐http-password=pwd
- 保存cookie
‐‐cookies=on ‐‐save-cookies cookies.txt ‐‐keep-session-cookies
- 使用cookie
‐‐cookies=on ‐‐load-cookies cookies.txt ‐‐keep-session-cookies
10.2.2. curl
10.2.2.1. 常用
- 直接显示
curl www.example.com
- 保存指定的名字
-o newname
- 不指定名字
-O
10.2.2.2. 正则
- 文件名
curl ftp://example.com/file[1-100].txt
- 域名
curl http://site.{one,two,three}.com
本文转载自:网络
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486