首页 > 其他 > 详细

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

时间:2020-04-21 14:27:25      阅读:80      评论:0      收藏:0      [点我收藏+]

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实现免交互执行命令

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!