bash 脚本将服务回复传递给变量
我正在编写一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你的意思是这样吗?
这只是在其他主机上执行
命令
,并在完成时终止SSH会话。You mean like this?
This simply executes
command
on otherhost, and terminates the SSH session when that finishes.检查
/etc/motd
的内容以及/etc/ssh/sshd_config
中的Banner
字段 [参考]。我假设其中之一是“您已登录”消息的来源。只需清空该消息并重新启动 sshd 即可。这将抑制该消息。Check the contents of
/etc/motd
and theBanner
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.