curl

データをサーバーから転送、もしくはサーバーへ転送します。 HTTP、FTP、POP3を含むほとんどのプロトコルをサポートしています。 もっと詳しく: https://curl.se/docs/manpage.html

curl {{http://example.com}} {{[-o|--output]}} {{ファイルパス}}

curl {{[-O|--remote-name]}} {{http://example.com/filename}}

curl {{[-f|--fail]}} {{[-O|--remote-name]}} {{[-L|--location]}} {{[-C|--continue-at]}} - {{http://example.com/filename}}

curl {{[-d|--data]}} {{'name=bob'}} {{http://example.com/form}}

curl {{[-H|--header]}} {{'X-My-Header: 123'}} {{[-X|--request]}} {{PUT}} {{http://example.com}}

curl {{[-d|--data]}} {{'{"name":"bob"}'}} {{[-H|--header]}} {{'Content-Type: application/json'}} {{http://example.com/users/1234}}

curl {{[-u|--user]}} {{ユーザー名}} {{http://example.com}}

curl {{[-E|--cert]}} {{client.pem}} --key {{key.pem}} {{[-k|--insecure]}} {{https://example.com}}