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

expect 远程传输文件

时间:2020-03-03 20:25:57      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:usr   sts   pass   expect   远程   +++   span   root   tin   

+++++++++++++++++++++++++++++++++++++

标题:expect 远程传输文件

时间:2020年3月3日

+++++++++++++++++++++++++++++++++++++

 

#/usr/bin/env expect

set  ip  192.168.100.100

set  user  root

set  password  centos

set  timeout  5

spawn scp -r /etc/hosts ${user}@${ip}:/tmp

expect {

  "yes/no" { send "yes\r" ; exp_continue }

  "passsword" { send "${password}\r" }

}

expect eof

expect 远程传输文件

标签:usr   sts   pass   expect   远程   +++   span   root   tin   

原文地址:https://www.cnblogs.com/lv1572407/p/12404167.html

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