Tag: wget

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

Download Multiple URLs

Command to download a series of urls with zero padding files… for ((i=1;i

Fetch a URL With a Number Series

Use this command to download numbered content… for ((i=1; i

Download Multiple Files with Wget

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]

Download Entire Folder using Wget Command in Linux

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,…