curl:check_http_headers
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
curl:check_http_headers [2016/07/01 23:23] – created peter | curl:check_http_headers [2020/09/25 12:57] (current) – created 192.168.1.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Curl - Check HTTP Headers ====== | ====== Curl - Check HTTP Headers ====== | ||
- | < | + | < |
curl -Ls -o /dev/null -D - sharewiz.net | curl -Ls -o /dev/null -D - sharewiz.net | ||
</ | </ | ||
Line 8: | Line 8: | ||
* -s Silent mode. Don't show progress meter or error messages. | * -s Silent mode. Don't show progress meter or error messages. | ||
* -D Write the protocol headers to the specified file. | * -D Write the protocol headers to the specified file. | ||
+ | |||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | HTTP/1.1 200 OK | ||
+ | Server: nginx | ||
+ | Date: Fri, 01 Jul 2016 23:24:21 GMT | ||
+ | Content-Type: | ||
+ | Content-Length: | ||
+ | Last-Modified: | ||
+ | Connection: keep-alive | ||
+ | ETag: " | ||
+ | Accept-Ranges: | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Alternative method ===== | ||
+ | |||
+ | <code bash> | ||
+ | curl --head http:// | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | HTTP/1.1 200 OK | ||
+ | Server: nginx | ||
+ | Date: Fri, 01 Jul 2016 23:47:49 GMT | ||
+ | Content-Type: | ||
+ | Content-Length: | ||
+ | Last-Modified: | ||
+ | Connection: keep-alive | ||
+ | ETag: " | ||
+ | Accept-Ranges: | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Check any specific resource ===== | ||
+ | |||
+ | <code bash> | ||
+ | curl --head http:// | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Dump document headers to a file ===== | ||
+ | |||
+ | <code bash> | ||
+ | curl --dump-header headers.txt http:// | ||
+ | </ | ||
curl/check_http_headers.1467415437.txt.gz · Last modified: 2020/07/15 09:30 (external edit)