码迷,mamicode.com
首页 > 系统相关 > 详细

免密码复制远程linux服务器文件

时间:2019-01-15 20:31:21      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:copyright   rip   bin   password   复制   服务器   zha   reserve   user   

#!/bin/bash
#
#****
#Author: zhang
#QQ: 531908902
#Date: 2019-01-15
#FileName: expect_scp.sh
#URL:
#Description: The test script
#Copyright (C): 2019 All rights reserved
#****
cat name.txt |while read ip user passwd;do
expect <<EOF
spawn scp $user@$ip:/date/* /date/dong
expect "yes" {send "yes\n" }
expect "est" {send "$user\n" }
expect "password" {send "$passwd\n" }
expect eof
EOF
done

其中 name.txt 文件和该脚本都在同一个文件夹
name.txt 格式
172.20.120.39 root centos7
cat的行赋值给while循环的变量
read赋值是一行一行的读取的 read 后面的变量以空格 分别获得 name.txt第一行的值,name.txt 格式也是空格隔开
从而赋值以后 执行后面的命令

免密码复制远程linux服务器文件

标签:copyright   rip   bin   password   复制   服务器   zha   reserve   user   

原文地址:http://blog.51cto.com/14114496/2343103

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