انتقال داده از/به سرور. از اکثر پروتکلها از جمله HTTP، FTP و POP3 پشتیبانی میکند. اطلاعات بیشتر: https://curl.se/docs/manpage.html.
curl {{http://example.com}} --output {{path/to/file}}
curl --remote-name {{http://example.com/filename}}
curl --fail --remote-name --location --continue-at - {{http://example.com/filename}}
stdin
، از --data @file_name یا --data @'-' استفاده کنید: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/1234}}
curl --user {{username}} {{http://example.com}}
curl --cert {{client.pem}} --key {{key.pem}} --insecure {{https://example.com}}