curl and wget

The purpose of this document is to describe how to download stuff in linux.

Write to a file named

wget --output-document=<file> http://foo wget -O <file> http://foo

Write to stdo

wget -O - <file> http://foo

--limit-rate=200k -b (background) wget --user-agent="Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.3) Gecko/2008092416 Firefox/3.0.3" URL-TO-DOWNLOAD --tries=75 wget -i download-file-list.txt wget --mirror -p --convert-links -P ./LOCAL-DIR WEBSITE-URL

[Edit]