How to only download files beginning with a certain range of numbers?
0
I'm trying to download files from a numbered list on a website. The list goes up to 6179 items, but I want to start the download from item 4852. I've tried the command: wget -m -np -c -A "*[4852-6179]*" "WEBSITE" However that starts the download from item 1 for some reason. The command: wget -m -np -c -A "*485[2-9]*" "WEBSITE" Works perfectly, but it only downloads files 4852-4859. How can I increase that range to 4852-6179?
linux terminal download wget
share | improve this question
edited Dec 13 '18 at 7:05
fixer1234
18k