码迷,mamicode.com
首页 > 其他好文 > 详细

while嵌套expect实现免交互执行命令

时间:2020-04-21 14:52:49      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:show   done   redhat   执行   span   expect   send   实现   echo   

1、添加用户tom100

#!/bin/bash
while read LINES
do
        user=`echo $LINES |cut -d   -f1`
        password=`echo $LINES |cut -d   -f2`
        host=`echo $LINES |cut -d   -f3`
        expect <<EOF
        spawn ssh $user@$host
        expect "yes/no"  {send "yes\r"}
        expect "password:" {send "$password\r"}
        expect "#" {send "useradd tom100\r"}
        send "exit\r"
        expect eof
EOF
done <ip.txt

 

2、ip.txt的格式

root redhat 192.168.101.20
root redhat 192.168.101.21
root redhat 192.168.101.22

while嵌套expect实现免交互执行命令

标签:show   done   redhat   执行   span   expect   send   实现   echo   

原文地址:https://www.cnblogs.com/hym-by/p/12744316.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!