码迷,mamicode.com
首页 > 其他好文 > 详细

自动scp(二)

时间:2015-05-06 14:59:24      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

#!/usr/bin/expect -f
spawn scp /shell/bms3acount.txt root@192.168.35.186:/root/BMS/
set timeout 20
expect "(yes/no)?" {
send "yes\r"}
expect "password:" {
send  "3344134\r" }
expect eof

 

 

 

#!/usr/bin/expect -f
set timeout 36000
set password tysxtv189
#download
set date [exec date "+%Y-%m"]
spawn scp -l 30000 -P 6022 /data/messlog/backup/msg_$date.txt  datacenter@192.168.40.125:/data/ftpsite/duanxin/
#sleep 3600
expect {
"(yes/no)?"
{send "yes\n"}

"password:"
{send "$password\n"}
}

expect eof
exit

自动scp(二)

标签:

原文地址:http://www.cnblogs.com/lubing666666/p/4481931.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!