gpt4 book ai didi

perl - 使用Net::OpenSSH将文件从远程计算机传输到本地计算机

转载 作者:行者123 更新时间:2023-12-02 13:49:31 30 4
gpt4 key购买 nike

我已经构建了一个脚本,该脚本应该将文件从远程计算机传输到本地计算机。

#!/usr/bin/perl

use strict;
use warnings;

use Net::OpenSSH;
use Data::Dumper;

my $local_dir = "/LOCAL/DIR/LOCATION/"
print "[LOCAL DIR]-> $local_dir\n";

my $remote_dir = "/REMOTE/DIR/LOCATION/";
print "[REMOTE DIR]-> $remote_dir\n";

my ($host, $user, $password) = ("remote.machine.ip.address", "userid", "password");

my $ssh = Net::OpenSSH->new($host,
user => $user,
password => $passwd,
master_opts => [-o => "StrictHostKeyChecking=no"]
);
$ssh->error and die "Couldn't establish SSH connection: ". $ssh->error;

my @file = $ssh->capture("cd $remote_dir && ls -1tr | grep Report | tail -1");
print "[FILE]:\n".Dumper(\@file);

$ssh->scp_get({glob => 1}, "$remote_dir$file[0]", $local_dir)
or die "scp failed: " . $ssh->error;

undef $ssh;
在上面的代码中,它能够打印 @file的Dumper值,但无法在本地系统中获取文件。
这是它最后抛出的错误:
[FILE]:
$VAR1 = [
'Report_Managable_20200705.csv
'
];
scp: /REMOTE/DIR/LOCATION/Report_Managable_20200705.csv
protocol error: expected control record
scp failed: scp failed: child exited with code 1 at file_get_test.pl line 22.
谁能帮助我解决此问题。 TIA。

最佳答案

$ssh->capture()返回的列表在每个项目的末尾都有新行。尝试使用chomp @file删除换行符。

关于perl - 使用Net::OpenSSH将文件从远程计算机传输到本地计算机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62762706/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com