데이터를 서버에서 혹은 서버로 전송. HTTP,FTP 및 POP3를 포함한 대부분의 프로토콜 지원. 더 많은 정보: https://curl.se.
curl {{http://example.com}} --output {{파일명}}
curl --remote-name {{http://example.com/filename}}
curl --remote-name --location --continue-at - {{http://example.com/filename}}
application/x-www-form-urlencoded
유형의 POST 요청):curl --data {{'name=bob'}} {{http://example.com/form}}
curl --header {{'X-My-Header: 123'}} --request {{PUT}} {{http://example.com}}
curl --data {{'{"name":"bob"}'}} --header {{'Content-Type: application/json'}} {{http://example.com/users/123}}
curl --user myusername:mypassword {{http://example.com}}
curl --cert {{클라이언트.pem}} --key {{키.pem}} --insecure {{https://example.com}}