wget批量下载

下载ftp文件:

wget --ftp-user=User --ftp-pas­swo­rd=Mir URL

 

下载yum源文件:

#!/bin/bash
yum_site="http://nginx.org/packages/centos/7/x86_64/"
dest_dir=$(cd $(dirname $0); pwd)
wget -m -c -N -np -nH --cut-dirs=1 --reject=html  $yum_site  -P $dest_dir

 

wget -nc -np -r -k http://www.ctan.org/tex-archive/macros/latex/

posted @ 2018-07-24 22:30  fcing  阅读(297)  评论(0编辑  收藏  举报