Saturday, September 20th, 2008 11:49 PM
Command to download a series of urls with zero padding files…
for ((i=1;i<20;i++))
do wget "http://img55.onemanga.com/mangas/00000004/00000000/Naruto-Pilot-`printf "%02d" $i`.jpg"; done
done
No Comments »
Thursday, July 3rd, 2008 11:04 PM
Use this command to download numbered content…
for ((i=1; i<9; i++)) ; do wget "http://www.example.com/$i.txt" ; done
1 Comment »
Friday, August 3rd, 2007 06:15 PM
Wget can be used to download multiple files with just one command
wget -c "http://example.com/file[1-9].htm"
[tags]wget,download,multiple,series,linux,command,cli[/tags]
No Comments »
Friday, March 9th, 2007 04:15 PM
wget -m http://www.tldp.org/HOWTO/Serial-Programming-HOWTO/
- -m, –mirror
- shortcut for -N -r -l inf –no-remove-listing.
wget -H -r --level=1 -k -p http://www.tldp.org/HOWTO/Serial-Programming-HOWTO/
- -r, –recursive
- Specify recursive download.
- -l, –level=NUMBER
- Maximum recursion depth (inf or 0 for infinite).
- -k, –convert-links
- Make links in downloaded HTML point to local files.
- -p, –page-requisites
- Get all images, etc. needed to display HTML page.
Original Article
wget Manual
No Comments »