cURL 窗口不显示 html 响应

发布于 2024-11-16 10:54:47 字数 160 浏览 0 评论 0原文

有什么方法可以不在控制台中显示 html 响应吗?它减慢了我的项目速度,我想禁用它。

我只是使用

curl http://www.mysite.com

谢谢

Is there any way to not display the html response in the console? It's slowing down my project and I would like to disable it.

I simply use

curl http://www.mysite.com

Thanks

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

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

发布评论

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

评论(3

脸赞 2024-11-23 10:54:47

下面是在 Windows 上执行此操作的方法

curl "http://example.com" -o NUL

这告诉curl 将输出下载到 Windows 相当于 /dev/null

Here's how to do it on windows

curl "http://example.com" -o NUL

This tells curl to download the output to the windows equivalent of /dev/null

非要怀念 2024-11-23 10:54:47

您可以将输出重定向到类 Unix 系统上的 /dev/null 或 Windows 系统上的 NUL。或者只是将其保存到一个文件中,仅在出现问题时进行检查。

您可以使用 shell 运算符 > 重定向输出或者您可以使用curl的.o(小写字母o)选项。

You can redirect the output to /dev/null on unix-like systems or NUL on windows systems. Or just save it to a file that only only check in case something goes wrong.

You redirect the output using the shell operator > or you can use curl's .o (lower case letter o) option.

九命猫 2024-11-23 10:54:47

您可以将输出定向到 /dev/null

curl http://www.mysite.com > /dev/null

You could direct the output to /dev/null

curl http://www.mysite.com > /dev/null
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文