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 »
Saturday, November 10th, 2007 11:09 PM
Show the headers of an URL from the command line. This will need perl, lwp installed on the system.
lwp-request -ed "http:/lindesk.com/"
URL Headers using Curl
No Comments »
Friday, September 28th, 2007 09:22 AM
Show the headers of an URL using Curl
curl http://example.com -I
1 Comment »
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 »