- more options refer to the examples section of the manual page, this tool is very well documented.
- curl   Â
  Â
   Alternative website downloaders
   Â
  Â
You may like to try alternatives like httrack. A full GUI website downloader written in python and available for GNU/Linux
curl is another remote downloader. This remote downloader is designed to work without user interaction and supports a variety of protocols, can upload/download and has a large number of tricks/work-arounds for various things. It can access dictionary servers (dict), ldap servers, ftp, http, gopher, see the manual page for full details.
To access the full manual (which is huge) for this command type:
  Â
curl -M
For general usage you can use it like wget . You can also login using a user name by using the -u option and typing your username and password like this:
  Â
curl -u username:password http://www.placetodownload/file
To upload using ftp you the -T option:
  Â
curl -T file_name ftp://ftp.uploadsite.com
To continue a file use the -C option:
  Â
curl -C - -o file http://www.site.com
Notes
   wget manual page
  Â
This way around the wildcard limitation has been adopted (with a tiny amount of editing) from wget manual page , see [9] in the Prev for further information.
   Prev
   Home
   Next
   Network Configuration
   Up
   Remote Administration Related

