【问题标题】:Transfer file from Remote machine to local machine using Net::OpenSSH使用 Net::OpenSSH 将文件从远程机器传输到本地机器
【发布时间】:2020-10-26 23:16:48
【问题描述】:

我已经构建了一个脚本,它应该从远程机器获取文件到本地机器。

#!/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。

【问题讨论】:

    标签: perl ssh sftp file-transfer


    【解决方案1】:

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

    【讨论】:

    • 谢谢@Hakon。我怎么忘了使用chomp :)