<div dir="ltr"><div dir="ltr"><div class="gmail_default" style="font-size:small">On Fri, Jan 31, 2025 at 10:49 AM Anton Avramov via kwlug-disc <<a href="mailto:kwlug-disc@kwlug.org">kwlug-disc@kwlug.org</a>> wrote:</div></div><div class="gmail_quote gmail_quote_container"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">P.S. looking for the --write-out switch in the manual I see it has: <br>
json           A JSON object with all available keys. (Added in 7.70.0)<br>
So it would be possible to use that and then jq again.<br></blockquote><div><br></div><div style="font-size:small" class="gmail_default">I used the --write-out switch to make a small shell script that would <br></div><div style="font-size:small" class="gmail_default">tell me quickly how fast a site is, and whether it redirects<br></div><div style="font-size:small" class="gmail_default"><br></div><div style="font-size:small" class="gmail_default"><div style="font-size:small" class="gmail_default">curl -skL -o /dev/null -w "%{http_code},%{time_total},%{num_redirects},%{url_effective}\n" <a href="http://www.kwlug.org">www.kwlug.org</a> <br>200,0.370061,2,<a href="https://kwlug.org/">https://kwlug.org/</a></div><div style="font-size:small" class="gmail_default"><br></div><div style="font-size:small" class="gmail_default">This says that there were 2 redirects, the end HTTP code is 200 (good), and it took 0.37 seconds to serve the request.</div><div style="font-size:small" class="gmail_default"><br></div><div style="font-size:small" class="gmail_default">In your case, you can do something like this:</div><div style="font-size:small" class="gmail_default"><br></div></div><div style="font-size:small" class="gmail_default">curl -skL -o /dev/null -w "%{http_code}\n%{header_json}\n" <a href="http://www.kwlug.org">www.kwlug.org</a> <br>200</div><div style="font-size:small" class="gmail_default">{</div><div style="font-size:small" class="gmail_default">"date":["Thu, 30 Jan 2025 19:00:12 GMT"],<br>"server":["Apache"],<br>"cache-control":["max-age=86400, public"],<br>"x-drupal-dynamic-cache":["MISS"],<br>"content-language":["en"],<br>"x-content-type-options":["nosniff"],<br>"x-frame-options":["SAMEORIGIN"],<br>"expires":["Sun, 19 Nov 1978 05:00:00 GMT"],<br>"vary":["Cookie,Accept-Encoding"],<br>"x-generator":["Drupal 10 (<a href="https://www.drupal.org">https://www.drupal.org</a>)"],<br>"x-drupal-cache":["HIT"],<br>"last-modified":["Thu, 30 Jan 2025 19:00:09 GMT"],<br>"etag":["\"1738263609\""],<br>"transfer-encoding":["chunked"],<br>"content-type":["text/html; charset=UTF-8"]</div><div style="font-size:small" class="gmail_default">}<br></div></div></div>