|
krungkuene.org back |
|
krung's knowledge pages seite in deutsch |
published: 2003-08-25 related pages: more shell scripts
sometimes you want to download some incremental numbered staff from a website as images or pages. this script helps you.
suck_numbered.sh
suck_numbered.sh.gz
#!/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