View Single Post
Old April 4th, 2018, 04:37 PM   #2
halvar
Blocked!
 
Join Date: Jan 2008
Location: HH
Posts: 1,963
Thanks: 115,040
Thanked 32,801 Times in 1,955 Posts
halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+
Default

In cases like this I use wget. A command line tool available for practically every operating systems.

Using bash it can be invoked in a for loop:

HTML Code:
for x in $(seq 1 148); do wget http://online.pubhtml5.com/vfof/guzu/files/large/$x.jpg; done
If you don't know how to do a for loop you can easily create a windows-bat-file using a tool like excel with a line for every single image:

HTML Code:
wget http://online.pubhtml5.com/vfof/guzu/files/large/1.jpg
wget http://online.pubhtml5.com/vfof/guzu/files/large/2.jpg
wget http://online.pubhtml5.com/vfof/guzu/files/large/3.jpg
....
wget http://online.pubhtml5.com/vfof/guzu/files/large/148.jpg
execute the bat file and it will download all.

Maybe there are also tools with a nice GUI out there to do this.

Addendum: I forgot the -i param. You can create a text file containing urls and download them with
HTML Code:
wget -i myurls.txt

Last edited by halvar; April 4th, 2018 at 04:41 PM.. Reason: forgot -i
halvar is offline   Reply With Quote