实现方式:
通过expect工具实现
#!/bin/bash
yum -y install expect
expect -c "
spawn scp -r root@192.168.10.106:/root/qumf/Agoly.txt /root/qumf/
expect {
\"*assword\"
{
set timeout ;
send \"Hhly2017\r\";
}
\"yes/no\"
{
send \"yes\r\"; exp_continue;}
}
expect eof"