Recursive website mirroring with filtering

2

Trying to fetch a bunch of files from a website without downloading the full content. Here is what I'm trying:

wget --no-clobber --convert-links --random-wait -r -p --level 10 -e robots=off -U mozilla -A zip,gdb,gpx http://www.mtb-bg.com

Without -A option full website is mirrored. Once I add the filter list I got zilch. I guess the problem is full link structure must be created first and then filtered extensions have to be fetched as a second step. Any clue how to do this with minimum amount of code?

TheGrave

Posted 2019-02-08T20:13:02.227

Reputation: 21

No answers