Curl
Various
curl -C - -O url= resume an interrupted download ofurlxargs -n 1 curl -O < listofurls.txt= download a file list from a file, one by onecurl -I www.url.com= get HTTP headers returning from a servercurl --data "abc=123&def=456" http://url.com/info.php= make a POST request by sending theabcanddefparameters with123and456values to the servercurl --user-agent "User Agent string"= specify an User Agent stringcurl --cookie-jar cookies.txt http://www.url.com= save cookies received from url incookies.txtcurl --cookie cookies.txt http://www.url.com= send stored cookies incookies.txtto urlcurl --resolve www.url.com:80:8.8.8.8 http://www.url.com= use a different DNS server, in this example 8.8.8.8 on port 80, to resolve url