ILOAPP image server download loop
June 14, 2009
The script below downloads a number of images from a photo archive on an iloapp server to the current directory. It is very basic with no usefull user controls, but it is simple enough for most people to understand it I hope.
# Expands image urls and downloads them with wget
imgname=""
urlname=""
for (( i = 0; i <= 44; i++ ))
do
urlname="http://iloapp.gydesen.biz/gallery/madeira2009?Download&album=10&image=""$i"
imgname="Karen-billede-""$i"".jpg"
wget --output-document=$imgname $urlname
done