Trasferisci dati da o ad un server. Supporta molti protocollo, tra cui HTTP, FTP e POP3. Maggiori informazioni: https://curl.haxx.se.
curl {{http://example.com}} -o {{nome_file}}
curl -O {{http://example.com/nome_file}}
curl -O -L -C - {{http://example.com/nome_file}}
application/x-www-form-urlencoded
):curl -d {{'nome=mario'}} {{http://example.com/form}}
curl -H {{'X-Mio-Header: 123'}} -X {{PUT}} {{http://example.com}}
curl -d {{'{"nome":"mario"}'}} -H {{'Content-Type: application/json'}} {{http://example.com/utenti/1234}}
curl -u utente:password {{http://example.com}}
curl --cert {{client.pem}} --key {{chiave.pem}} --insecure {{https://example.com}}