shell scp免输入密码传输

#!/usr/bin/expect -f
set dtime [lindex $argv 0 ] 
set password 111111
set timeout 3000;
spawn /usr/bin/scp /software/databk/$dtime.sql [email protected]:/software/mysqldata/
#spawn ssh [email protected]
expect  {
"*yes/no" {send "yes\r";exp_continue}
"*password:" {send "$password\r"}
}
interact


本文出自 “杜彬” 博客,请务必保留此出处http://dubin.blog.51cto.com/5587860/1629076

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。