在Windows上使用批处理从远程linux服务器上复制文件到本地

时间:2022-03-20 07:20:06

在Windows上使用批处理从远程linux服务器上复制文件到本地


################################################

安装cygwin需要选择的安装包如下:

autoconf2. ,automake1.1 ,binutil ,gcc-cor ,,

gcc-g ,gd ,pcre  ,pcre-devel ,make ,vim,expect(expect为使用scp时自动输入密码需要)

镜像文件选择:


#################################################


1、设置Windows系统环境变量

将/cygwin64/home/admin;/cygwin64/bin;添加到Windows系统环境变量Path的最前面

2、在/cygwin64/home/admin中编写脚本101.sh,内容如下:

#!/bin/expect -f

#set password 123456

set date [exec date -d "-2 day" "+%Y%m%d"]

set fd [open /home/admin/passwd.txt r]

set password [read $fd]

close $fd

spawn scp -r  monitor@192.168.1.101:/tmp/nagiosa_${date}.tar /home/admin/log/

set timeout 300

expect "monitor@192.168.1.101‘s password:"

set timeout 300

send "$password\r"

set timeout 300

send "exit\r"

expect eof

3、密码文件

vi /home/admin/passwd.txt

123456

4、在Windows上编写批处理文件101.bat,内容如下:

expect -f c:\cygwin64\home\admin\101.sh

expect -f c:\cygwin64\home\admin\201.sh(将要执行的脚步像这样添加下去即可)

pause

###########################


在Windows上使用批处理从远程linux服务器上复制文件到本地