linux:wget在后台下载

时间:2024-07-16 07:10:11

wget在后台下载

  1. 将wget在后台运行
nohup wget https://xxx.xxx.com/xxx.tar.gz > wget_console.out 2>&1 & 
  1. 通过tail命令查看进度
tail -f wget_console.out

wget 下载时不检查网站证书SSL

nohup wget --no-check-certificate https://xxx.xxx.com/xxx.tar.gz > wget_console.out 2>&1 &