Linux:下载wget

版权声明:原创内容,欢迎转载 https://blog.csdn.net/weixin_43731793/article/details/91349354

1、普通下载

wget https://www.apachefriends.org/xampp-files/7.3.6/xampp-linux-x64-7.3.6-0-installer.run

2、使用wget -c断点续传

使用wget -c重新启动下载中断的文件:


wget -c https://www.apachefriends.org/xampp-files/7.3.6/xampp-linux-x64-7.3.6-0-installer.run

3、后台下载

使用wget -b后台下载

对于下载非常大的文件的时候,我们可以使用参数-b进行后台下载。


wget -b https://www.apachefriends.org/xampp-files/7.3.6/xampp-linux-x64-7.3.6-0-installer.run

你可以使用以下命令来察看下载进度


tail -f wget-log

猜你喜欢

转载自blog.csdn.net/weixin_43731793/article/details/91349354