如何在“openssl s_client -connect”内强制退出?

发布于 2024-10-19 16:53:52 字数 282 浏览 2 评论 0原文

我正在编写一个调用该命令的脚本。

openssl s_client -showcerts -connect server:9999 > out.pem -key key.pem -cert cert.pem -pass pass:password

但它显示了一个输出,我尝试添加 -quiet 但没有运气。有没有办法让我得到它,这样它就不会向控制台报告。如果我在终端中运行命令,我必须输入 exit 才能退出连接。

我希望它在我的脚本中自动退出。有办法做到这一点吗?

I am writing a script that calls the command.

openssl s_client -showcerts -connect server:9999 > out.pem -key key.pem -cert cert.pem -pass pass:password

But it displays an output, I tried adding -quiet but with no luck. Is there a way I can get it so that it won't report to the console. If I run the command in terminal I have to type exit to get out of the connection.

I want this to exit automatically within my script. Is there a way to do that?

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

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

发布评论

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

评论(2

烂人 2024-10-26 16:53:52

对于自动退出部分,你可以这样做:

echo | openssl s_client -connect www.google.com:443

For the automatically exit part, you could do this:

echo | openssl s_client -connect www.google.com:443
等你爱我 2024-10-26 16:53:52

输出可能被发送到 stderr(而不是 stdout)。如果您使用 >& 进行重定向,它应该可以工作。

The output is possibly being sent to stderr (rather than stdout). It should work if you use >& for the redirection.

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