gpt4 book ai didi

linux - 无法通过 expect 对 bash 命令脚本进行 SSH

转载 作者:太空狗 更新时间:2023-10-29 12:25:38 25 4
gpt4 key购买 nike

我正在尝试将一组命令推送到多个远程主机。我可以根据个人情况使用以下内容:
ssh user@remoteHost "bash -s" <./commands.sh
我可以把它放到一个循环中,但是我不得不输入 n 次密码。在 SSH 配置文件中禁用密码提示对我来说不是一个选项。我试图在循环中使用 expect,但我无法让它工作。

#!/bin/bash  
HOSTS="host1 host2"
read -sp "Password: " PASSWORD
for HOST in $HOSTS; do
expect -c "
spawn /usr/bin/ssh user@$HOST "bash -s" <./commands.sh
expect_before {
"*yes/no*" {send "yes"\r;exp_continue}}
expect {
"*Password*" {send $PASSWORD\r;interact}}
exit"
done

我收到以下错误:

spawn /usr/bin/ssh root@host1 bash  
expect: invalid option -- 's'
usage: expect [-div] [-c cmds] [[-f] cmdfile] [args]
spawn /usr/bin/ssh root@host2 bash
expect: invalid option -- 's'
usage: expect [-div] [-c cmds] [[-f] cmdfile] [args]

有什么想法吗?似乎 expect 正在尝试解释 bash 命令。我不确定如何阻止它。

最佳答案

解决方法:
替换
spawn /usr/bin/ssh user@$HOST "bash -s" <./commands.sh

spawn sh -c {ssh root@$HOST 'bash -ls' < /tmp/commands.sh}
最终代码:

#!/bin/bash

HOSTS="host1 host2"

read -sp "Password: " PASSWORD

for HOST in $HOSTS; do
expect -c "
spawn sh -c {ssh root@$HOST 'bash -ls' < /tmp/commands.sh}
expect_before {
"*yes/no*" {send "yes"\r;exp_continue}}
expect {
"*assword*" {send $PASSWORD\r;interact}}
exit"
done

关于linux - 无法通过 expect 对 bash 命令脚本进行 SSH,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41858349/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com