
#!/bin/bash

# V 0.1.0 030810 suck_numbered.sh
#
# Licensed under GPL
#
#  ¢  ¢
#  ¢ ¢
#  ¢     ¢¢  ¢  ¢  ¢¢   ¢¢     ¢¢   ¢¢   ¢¢
#  ¢ ¢  ¢  ¢ ¢  ¢ ¢  ¢ ¢  ¢   ¢  ¢ ¢  ¢ ¢  ¢
#  ¢  ¢ ¢     ¢¢  ¢  ¢  ¢¢¢ ¢  ¢¢  ¢     ¢¢¢
#                         ¢                ¢
#        martin         ¢¢     krung     ¢¢
#
# ++++++++++++++++++++++++++++++++++++++++++++++++
#

#  DESC
#
#  sometimes you want to download some incremental 
#  numbered staff from a website as images or pages.
# 
#  this script helps you.
#
#
#  USAGE
#  
#  replace the path of the URL
#
#  chose wget or puf, wget is default
#
#
#  REQUIRE
#
#  puf or wget 


for i in `seq 100 200`; do

	URL="http://www.derhost.com/image$i.jpg"

	echo $URL

	# use puf - http client for parallel downloading
	#puf $URL

	# or wget
	wget $URL

done

