03/01/12 14:20.net
>>210
上のほうで出てるパッチを当てたwgetだとこんな感じ?
#!/bin/bash
url="URLリンク(hoge.com)"
img="/hoge/img-box/"
lastpage=10
i=0
while [ $i -lt $lastpage ]
do
i=`expr $i + 1`
echo $url$i >> list.txt
done
wget -r -w 1 -I $img -i list.txt -o wget.log
rm -f list.txt