2021-05-12 14:32:11
CentOS 7 Expect + Shell實現批次建立檔案
2020-06-16 17:21:58
如何在CentOS 7 Expect + Shell實現批次建立檔案,這個問題好久了,一直沒整理出來。記得還是上次面試的時候問到如何批次修改1000台機器的主機名。這裡給出批次建立內容為Hello,名為1.txt的檔案。
一、首先安裝expect
yum install -y expect
二、準備工作:(1)準備IP地址的列表。vim ip.txt
192.168.1.88
192.168.1.89
192.168.1.90
(2)準備要執行的命令。vim cmd.txt
mkdir /tmp/test
三、指令碼部分
#!/bin/bash
passwd="123456"
sc=$(cat /tmp/cmd.txt)
echo $sc
cat ip.txt |while read line
do
/usr/bin/expect <<EOF
set timeout 10
spawn ssh root@$line
expect {
"yes/no" { send "yesr";exp_continue }
"password:" {send "$passwdr"}
}
expect "]#"
send "$scr"
send "exitr"
expect eof
EOF
done
exit 0
局限:假如密碼不同,此方案需要另行考慮。可能會加上一個passwd的檔案。
本文永久更新連結地址:http://www.linuxidc.com/Linux/2017-02/140362.htm
相關文章