[Shell command] curl コマンドでレスポンスのヘッダーを表示させる

作成日: 2021年04月19日

curl コマンドの -i または --include オプションを使用すると、レスポンスにヘッダーの情報を含ませることができます。

curl --include https://documentroot.org

実行結果は下記のようになります。

HTTP/2 200 
date: Mon, 19 Apr 2021 13:26:59 GMT
content-type: text/html
content-length: 7598
server: Apache
last-modified: Mon, 19 Apr 2021 13:20:41 GMT
accept-ranges: none
vary: Range,Accept-Encoding

<html>
  <head>
    <meta content="IE=edge" http-equiv="X-UA-Compatible">
    <meta charset="utf-8">
...

参考

Shell command curl