Trasferisci dati da o ad un server. Supporta molti protocollo, tra cui HTTP, FTP e POP3. Maggiori informazioni: https://curl.se/docs/manpage.html.
curl {{http://example.com}} --output {{nome_file}}
curl --remote-name {{http://example.com/nome_file}}
curl --remote-name --location --continue-at - {{http://example.com/nome_file}}
application/x-www-form-urlencoded
):curl --data {{'nome=mario'}} {{http://example.com/form}}
curl --header {{'X-Mio-Header: 123'}} --request {{PUT}} {{http://example.com}}
curl --data {{'{"nome":"mario"}'}} --header {{'Content-Type: application/json'}} {{http://example.com/utenti/1234}}
curl --user utente:password {{http://example.com}}
curl --cert {{client.pem}} --key {{chiave.pem}} --insecure {{https://example.com}}