wget 是当前 Unix 系统不可或缺的工具之一。
下载
Ubuntu
1 | $ sudo apt install -y wget |
CentOS
1 | $ sudo yum install -y wget |
macOS
1 | $ brew install wget |
使用
下载
1 | $ wget https://wxnacy.com/images/vimgrep.gif |
重命名
1 | $ wget -O vg.gif https://wxnacy.com/images/vimgrep.gif |
后台下载
后台下载,并将日志输出到 wget-log
中
1 | $ wget -b https://wxnacy.com/images/vimgrep.gif |
输入日志到文件
将本要输出到屏幕的日志信息输出到指定文件
1 | $ wget -a[/-o] wget.log https://wxnacy.com/images/vimgrep.gif |
下载完整网站
1 | $ wget --mirror -p --convert-links -P ~/Downloads https://wxnacy.com |
--miror
开户镜像下载。-p
下载所有为了html页面显示正常的文件。--convert-links
下载后,转换成本地的链接。-P ~/Downloads
保存所有文件和目录到本地指定目录。