我如何添加&debug=true?
How do i add &debug=true?
我正在做 curl,我想获得有关错误的更多详细信息,为此我应该使用 &debug=true
,但我不知道放在哪里以及如何放。
这是我正在使用的卷曲,我想获得有关错误的更多详细信息:
curl -s "localhost:9115/probe?target=http://linux.org&module=http_2xx" | grep -v '^#'
&
是分隔符;添加 debug=true
就像添加 module=http_2xx
.
curl -s "localhost:9115/probe?target=http://linux.org&module=http_2xx&debug=true" | grep -v '^#'
我正在做 curl,我想获得有关错误的更多详细信息,为此我应该使用 &debug=true
,但我不知道放在哪里以及如何放。
这是我正在使用的卷曲,我想获得有关错误的更多详细信息:
curl -s "localhost:9115/probe?target=http://linux.org&module=http_2xx" | grep -v '^#'
&
是分隔符;添加 debug=true
就像添加 module=http_2xx
.
curl -s "localhost:9115/probe?target=http://linux.org&module=http_2xx&debug=true" | grep -v '^#'