Backup Del.icio.us posts
Backup all delicious bookmarks using this command
wget --user=username --password=password https://api.del.icio.us/v1/posts/all -O bookmarks.xml
Backup all delicious bookmarks using this command
wget --user=username --password=password https://api.del.icio.us/v1/posts/all -O bookmarks.xml
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
Use this command to download numbered content…
for ((i=1; i<9; i++)) ; do wget "http://www.example.com/$i.txt" ; done
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]
wget -m http://www.tldp.org/HOWTO/Serial-Programming-HOWTO/
wget -H -r --level=1 -k -p http://www.tldp.org/HOWTO/Serial-Programming-HOWTO/