wget http://exemplo.com/arquivo.zip
curl -O http://exemplo.com/arquivo.zip
curl http://exemplo.com
wget -O meu_arquivo.zip http://exemplo.com/arquivo.zip
wget -r http://exemplo.com
wget ftp://ftp.exemplo.com/arquivo.zip
curl -I http://exemplo.com
curl -d "usuario=admin&senha=123" -X POST http://exemplo.com/login
wget --user=usuario --password=senha http://exemplo.com/protegido/arquivo.zip
curl -u usuario:senha http://exemplo.com/arquivo.zip -O
wget --limit-rate=200k http://exemplo.com/arquivo.zip
wget -c http://exemplo.com/arquivo_grande.zip
wget -i lista_arquivos.txt
wget -e use_proxy=yes -e http_proxy=proxy.servidor.com:8080 http://exemplo.com/arquivo.zip
curl -s http://api.exemplo.com/dados | jq
curl -A "Mozilla/5.0" http://exemplo.com
wget --save-cookies cookies.txt --post-data "usuario=admin&senha=123" http://exemplo.com/login
wget --timestamping http://exemplo.com/arquivo.txt
curl -H "Content-Type: application/json" -d '{"chave": "valor"}' -X POST http://api.exemplo.com/
aria2c -x 16 http://exemplo.com/arquivo_grande.zip
curl -H "Authorization: Bearer TOKEN_OAUTH" http://api.exemplo.com/
curl -L -b cookies.txt -c cookies.txt -d "usuario=admin&senha=123" http://exemplo.com/login
wget --ftp-user=usuario --ftp-password=senha ftp://ftp.exemplo.com/arquivo.zip
curl -w "@formato.txt" -o /dev/null -s http://api.exemplo.com/dados