於 Linux CLI 使用 CURL 要抓取網頁(HTTP)的 Header 參數, 要怎麼使用?
於 Linux CLI 使用 CURL 抓取 Header 資訊
於Linux CLI CURL 要抓 HTTP Header 的資訊, 可以使用 -I (-I 只會秀 Header 的資訊) 來達成.
curl -I 的參數說明
-I/--head
(HTTP/FTP/FILE) Fetch the HTTP-header only! HTTP-servers feature the command HEAD which this uses to get nothing but the header of a document. When used on a FTP or FILE file, curl displays the file size and last modification time only.
範例
- curl -I http://example.com
- curl -I example.com
- curl -I bit.ly/Q8f9o # 縮短網址, 可以看到 HTTP/1.1 301 Moved.