admin管理员组

文章数量:1658731

这是我在

following bash脚本中使用的代码片段:

for user_input in `awk '{print}' testfile_$$.txt`

do

ipaddress=`echo $user_input | cut -d';' -f 1`

command="${config_mode}`echo $user_input | cut -d';' -f 2-`"

ping -w 1 $ipaddress 1> /dev/null 2> $ERR_LOG_FILE 1> $LOG_FILE

if [ $? -eq 0 ];then

ssh "$USERNAME@$ipaddress" "$command"

>> $LOG_FILE

fi

done

我如何使用expect在此脚本中自动执行ssh登录.

我很期待并开始测试它(它失败了):

#!/usr/bin/bash

set force_conservative 0 ;# set to 1 to force conservative mode even if

;# script wasn't run conservatively originally

if {$force_conservative} {

set send_slow {1 .1}

proc send {ignore arg} {

sleep .1

exp_send -s -- $arg

}

}

#

set timeout -1

spawn ssh auto21@10.38.227.229 {uname -a; df -h}

match_max 100000

expect "*?assword: "

send -- "bar01\r"

expect eof

我是否需要在expect脚本中重新编写bash脚本,或者它可以在bash脚本中使用

如果可以的话:

更多我需要获取bash变量$command,$username,$password,$ipaddress并在期望部分中使用它

你会建议什么解决方案?

要么

我可以创建一个expect脚本并从bash脚本调用它只是为了登录,错误处理,执行,日志文件

本文标签: 脚本里用如何在Linuxexpect