Use this command to download numbered content…
for ((i=1; i<9; i++)) ; do wget "http://www.example.com/$i.txt" ; done
Byte sized tech know-how.
Use this command to download numbered content…
for ((i=1; i<9; i++)) ; do wget "http://www.example.com/$i.txt" ; done
Copyright © 2024 Txt
Also with curl :
curl “http://www.example.com/[1-8].txt”