bash 脚本将服务回复传递给变量

发布于 2025-01-07 11:12:14 字数 156 浏览 1 评论 0原文

我正在编写一个 bash 脚本来自动登录 ssh。一个人通过执行 ssh 命令然后传递密码来连接。我使用 sshpass 自动化了此操作。一旦您登录,服务器会回复一条消息“您已登录”。此消息显示在终端中,我不想显示在终端中,而是存储在 bash 变量中。 感谢您的帮助。

I am writing a bash script to automate login to ssh. A person gets connected by executing an ssh command and then passing a password. I have automated this by using sshpass. Once you are logged in, the server replies with a message "you are logged in". This message is displayed in the terminal, I dont want to display in terminal and instead store in a bash variable.
Thanks for your help.

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

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

发布评论

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

评论(2

默嘫て 2025-01-14 11:12:14

你的意思是这样吗?

VARIABLE=$(ssh otherhost command)

这只是在其他主机上执行命令,并在完成时终止SSH会话。

You mean like this?

VARIABLE=$(ssh otherhost command)

This simply executes command on otherhost, and terminates the SSH session when that finishes.

贱贱哒 2025-01-14 11:12:14

检查/etc/motd的内容以及/etc/ssh/sshd_config中的Banner字段 [参考]。我假设其中之一是“您已登录”消息的来源。只需清空该消息并重新启动 sshd 即可。这将抑制该消息。

Check the contents of /etc/motd and the Banner field in /etc/ssh/sshd_config [ref]. I'm assuming one of these is where the "you are logged in" message is coming from. Just blank the message and restart sshd. This will suppress the message.

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