Linux

基本使用

# 使用大写的O来重命名下载下来的文件:
wget -c "www.baidu.com" -O baidu.index.html

# 下载网站
wget -r -p -np -k -N -t 2 http://www.apple.com.cn/
wget -r -p -np -k -N -t 2 --accept=jpg https://mm.enterdesk.com

# 参数c断点续传
wget -r -p -np -k -N -t 2 -c https://mm.enterdesk.com

补充信息

Windows版本下载

原文地址:https://www.cnblogs.com/duchaoqun/p/12695604.html