| > The files that I need to download are .jpg and all
> of them start with the character "7".
> For example: 7-waai.jpg, 7-ooqp.jpg, 7-ahok.jpg
> etc.
>
> What is the best way to grab these files only?Put the list into a file and
use action=get separate files.
Don't have a list, then you must mirror the html to get them.
> The server contains other files - which I have
> excluded with the following:
> -*.log -*.lst -*.txt -*.zip -*.ini -*.gif -*.html
> -*.htm -*.js -*.xml -*.png -*.exe
>
> I added the following to only include .jpg files
> starting with "7":
> +7*.jpg
This will only get top level files (site/7xx.jpg)
-* +mime:text/html +*/7*.jpg | |