wget下载
shell> wget "https://profile-avatar.csdnimg.cn/default.jpg"
"https://profile-avatar.csdnimg.cn/default.jpg"
:待下载的文件。建议加上引号。
shell> wget --no-check-certificate "https://profile-avatar.csdnimg.cn/default.jpg" -O "aaa.jpg"
--no-check-certificate
:不检查证书-O "aaa.jpg"
:指定文件名称
wget 后台下载
shell> wget -b --no-check-certificate "https://profile-avatar.csdnimg.cn/default.jpg" -O "aaa.jpg"