@H_301_0@首先安装expect:
apt-get install expect 脚本如下: #!/usr/bin/expect set timeout 30 set password "xxxxx" spawn ssh -l root 192.168.1.163 expect "password:" send "$password\n" interact上面代码的功能: spawn 是用于执行shell命令,expect是用于搜索password:字符串。 send 用于发送命令,interact表示执行完留在该进程内。 最前面还设置了超时时间,也就是该脚本执行周期不会大于30s 原文链接:https://www.f2er.com/bash/390024.html