检查 shell 脚本中的 http 标头

检查 shell 脚本中的 http 标头

如何编写一个脚本,向网页发送 get 请求并返回格式良好的 http 标头?

答案1

尝试一下这个卑鄙的黑客手段:

wget -O - -o /dev/null --save-headers http://google.com | \
awk 'BEGIN{skip=0}{ if (($0)=="\r") {skip=1;}; if (skip==0) print $0 }'

答案2

一种选择可能是使用卷曲使用 --dump-header 选项。

答案3

许多不同语言中都有相当多的模块可以为您检索 HTTP 标头。

等等等等。

答案4

如果您只想查看标题..(非以编程方式)只需使用 mozilla firefox 的 [live http headers][1] 插件。

https://addons.mozilla.org/en-US/firefox/addon/3829

相关内容