自动登录传送文件

安装expect:yum install

#!/usr/bin/expect

#filename editconf


spawn scp /home/config.conf [email protected]:/mongo/mongo/conf

expect "*password:*"

send "mongodb_3\n"

interact

spawn scp /home/config.conf [email protected]:/mongo/mongo/conf/

expect "*password:*"

send "mongodb_4\n"

interact

spawn scp /home/config.conf [email protected]:/mongo/mongo/conf/

expect "*password:*"

send "mongodb_5\n"

interact

你可能感兴趣的:(自动登录传送文件)