wget批量下载
Posted fcing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wget批量下载相关的知识,希望对你有一定的参考价值。
下载ftp文件:
wget --ftp-user=User --ftp-password=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/
以上是关于wget批量下载的主要内容,如果未能解决你的问题,请参考以下文章