bash, wget, regexp

hello

nem vagyok nagy szkript író, de ezt azzal szeretném megcsinálni
képet kell letöltnei wgettel a link ilyen:
http://rm2007.extra.hu/d0/0002.jpg

./valami.sh http://rm2007.extra.hu/d0/0002.jpg
arra gondoltam hogy a kép nevében a számot mindig növelem egy ciklusban a wget már azt kapja majd a következő körben.csak nem tudom hogy hogyan kell kiszedni a utolsó 8 karaktert a parancssori argumentumból.
ha van jobb öteletetek szivesen várom!
előre is thx

Hozzászólások

Hi!


for i in `seq -w 1 10000`; do
 wget http://m2007.extra.hu/d0/$i.jpg;
done

köszönöm így megy, azaz majdnem a linkből kihagytál egy r betűt, de megy thx

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
In the world w/o fences who need Gates?
In the world there are 10 type of ppl, who know the binary, and who dont.

igen most olvastam el, amúgy úgy gondoltam, hogy *.jpg hogy az összes jpg-t, nem csak jpg-t de az összeset

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
In the world w/o fences who need Gates?
In the world there are 10 type of ppl, who know the binary, and who dont.

shell-ben eleg ronda, de pl. az elso parameter utolso 8 karakteret igy lehet megkapni: utolsonyolc=${1: -8}

for i in `seq -w 1 10000`; do
wget http://rm2007.extra.hu/d1/$i.jpg;
done

--09:30:48-- http://rm2007.extra.hu/d1/0091.jpg
=> `00250.jpg'
IP keresés rm2007.extra.hu... 80.77.113.72
Connecting to rm2007.extra.hu|80.77.113.72|:80... kapcsolódva.
HTTP kérés elküldve, várom a választ... 302 Found
Hely: http://error.extra.hu/error/404 [következik]
--09:30:48-- http://error.extra.hu/error/404
=> `404'
IP keresés error.extra.hu... 80.77.113.83
Connecting to error.extra.hu|80.77.113.83|:80... kapcsolódva.
HTTP kérés elküldve, várom a választ... 301 Moved Permanently
Hely: http://error.extra.hu/error/404/ [következik]
--09:30:48-- http://error.extra.hu/error/404/
=> `index.html.249'
Connecting to error.extra.hu|80.77.113.83|:80...

pedig 0091.jpg van!
http://rm2007.extra.hu/d1/0091.jpg

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
In the world w/o fences who need Gates?
In the world there are 10 type of ppl, who know the binary, and who dont.