Download with wget a folder of an ftp that is accessed through the web that contains subfolders

0

I'm trying to download some subfolders containing widgets with wget and I just download an index.html, I leave what I am doing, explanation:

  

download server link

Inside updates there are 2 folders and a file that the names change daily and inside the folders there are several files and I need to download all that content and assure it in the update folder.

>

This is what I've done

  

wget -e use_proxy = yes -e http_proxy = proxy.es -l3 -np link -P / var / www / html / security / update /

And how can I download several files that have the same date but not the time example 201810121030.zip and 201810121200.zip the most updated that would be 201810121200.zip

    
asked by Tony 13.10.2018 в 16:18
source

1 answer

-2
wget -e use_proxy=yes -e http_proxy=proxy.es -r -nd -A zip http://seguridad.es/descargas/actualizaciones/ -P /var/www/html/seguridad/actualizacion/
    
answered by 13.10.2018 в 18:01