wgetの連番をshellscriptで展開して、URLが勝手にエンコードされる。イラッとする。
#!/bin/bash
FORSTEP=10000
for i in {0..100}
do
WGETURL='https://www.example.co.jp/detail/detail.php?product_id={'$(($i*$FORSTEP))..$(($i*$FORSTEP+$FORSTEP-1))'}'
wget -r -np --wait 5 --random-wait -nv -e robots=off '$WGETURL'
done