向 / 從一個伺服器傳輸數據。 支持大多數協議,包括 HTTP、FTP 和 POP3. 更多資訊:https://curl.se/docs/manpage.html.
curl {{http://example.com}} --output {{檔案/完整/路徑}}
curl --remote-name {{http://example.com/filename}}
curl --fail --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}}
Content-Type
請求頭:curl --data {{'{"name":"bob"}'}} --header {{'Content-Type: application/json'}} {{http://example.com/users/1234}}
curl --user {{使用者名稱}} {{http://example.com}}
curl --cert {{client.pem}} --key {{key.pem}} --insecure {{https://example.com}}