如何添加& debug = true?

发布于 2025-01-19 01:15:10 字数 273 浏览 2 评论 0原文

我正在做一个卷发,我想获得有关错误的更多详细信息,为此,我应该使用debug = true,但是我不知道该放在哪里以及如何放置。

这是我正在使用的卷发,我想获得有关错误的更多详细信息:

curl -s "localhost:9115/probe?target=http://linux.org&module=http_2xx" | grep -v '^#'

I'm doing a curl and I want to get more details about the errors, and for that I should use &debug=true but I dont know where to put it and how.

This is the curl that I'm using and which I want to get more details about the errors :

curl -s "localhost:9115/probe?target=http://linux.org&module=http_2xx" | grep -v '^#'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

山川志 2025-01-26 01:15:10

& 是分隔符;添加 debug=true 就像添加 module=http_2xx 一样。

curl -s "localhost:9115/probe?target=http://linux.org&module=http_2xx&debug=true" | grep -v '^#'

& is a separator; add debug=true just like you added module=http_2xx.

curl -s "localhost:9115/probe?target=http://linux.org&module=http_2xx&debug=true" | grep -v '^#'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文