对于curl,如下
curl
curl <url> [options]
字符串关于选项:
-I
-i
GET
-v
但是...
问题
Request Headers
k7fdbhmy1#
Daniel的answer肯定是正确的(作为curl的首席开发人员!)这意味着,作为一种变通方法,您可以处理curl的详细输出。举例来说:
# Windows syntax curl -H "Accept: application/json" -H "Content-Type: application/json" -v https://google.com 2>&1 | \ grep "^> \S" | sed "s/> //" | awk "NR>3" # Linux syntax curl -H "Accept: application/json" -H "Content-Type: application/json" -v https://google.com 2>&1 | \ grep '^> \S' | sed 's/> //' | awk 'NR>3'
字符串输出:只有两个头:
Accept: application/json Content-Type: application/json
型删除前三行:
GET / HTTP/1.1 Host: google.com User-Agent: curl/8.1.2
型
pbossiut2#
curl没有这样的选项。
2条答案
按热度按时间k7fdbhmy1#
Daniel的answer肯定是正确的(作为
curl
的首席开发人员!)这意味着,作为一种变通方法,您可以处理curl的详细输出。
举例来说:
字符串
输出:只有两个头:
型
删除前三行:
型
pbossiut2#
curl没有这样的选项。