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

scp传输文件,自动填充密码

时间:2019-01-30 12:48:55      阅读:674      评论:0      收藏:0      [点我收藏+]

标签:highlight   file   bsp   div   密码   lan   argv   send   created   

一个偷懒的小shell,

#!/usr/bin/expect
#*************************************************************************
#         > File Name: expect.sh
#         > Author: chenglee
#         > Main : chengkenlee@sina.com
#         > Blog : http://www.cnblogs.com/chenglee/
#         > Created Time : 2019年01月30日 星期三 18时16分56秒
#*************************************************************************
set user root
set pass lizhenghua
set dir /home/newland/filesend
set ip 192.168.137.176
set filen [lrange $argv 0 0]

spawn scp ${filen} ${user}@${ip}:${dir}
expect "${user}@${ip}‘s password:"
send "${pass}\r"
interact

scp.sh + 要传送的文件

技术分享图片

 

scp传输文件,自动填充密码

标签:highlight   file   bsp   div   密码   lan   argv   send   created   

原文地址:https://www.cnblogs.com/chenglee/p/10337381.html

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