我的主机中有一个文件/ / a / b / c / file。我想在目录中的远程主机上创建一个文件,如dest。现在问题是,如何使用perl脚本和使用ssh在远程主机中将文件创建为/ dest / a / b / c / d / file。知道如何在脚本中创建目录。
感谢。
答案 0 :(得分:2)
要重现目录结构,请使用File::Spec
模块中的catfile
和abs2rel
:catfile
连接片段以创建路径,abs2rel
给出相对于某个基目录的路径。
File::Copy
模块的copy
将复制到句柄。这非常适合sshopen3
如何打开目标端标准输入,输出和错误的句柄。
远程命令有3个部分:
mkdir -p $dst_dir
,创建目标路径中文件前的所有目录cat >$dst_file
,将SEND
句柄连接到目标文件md5sum $dst_file
表示数据安全到达以下示例程序:
#! /usr/bin/perl
use warnings;
use strict;
use File::Basename;
use File::Copy;
use File::Spec::Functions qw/ abs2rel catfile /;
use Net::SSH qw/ sshopen3 /;
my $HOST = "user\@host.com";
my $SRC_BASE = "/tmp/host";
my $SRC_FILE = "$SRC_BASE/a/b/c/file";
my $DST_BASE = "/tmp/dest";
system("md5sum", $SRC_FILE) == 0 or exit 1;
my $dst_file = catfile $DST_BASE, abs2rel $SRC_FILE, $SRC_BASE;
my $dst_dir = dirname $dst_file;
sshopen3 $HOST, *SEND, *RECV, *ERRORS,
"mkdir -p $dst_dir && cat >$dst_file && md5sum $dst_file"
or die "$0: ssh: $!";
binmode SEND;
copy $SRC_FILE, \*SEND or die "$0: copy failed: $!";
close SEND or warn "$0: close: $!"; # later reads hang without this
undef $/;
my $errors = <ERRORS>;
warn $errors if $errors =~ /\S/;
close ERRORS or warn "$0: close: $!";
print <RECV>;
close RECV or warn "$0: close: $!";
示例运行:
$ ./create-file 746308829575e17c3331bbcb00c0898b /tmp/host/a/b/c/file 746308829575e17c3331bbcb00c0898b /tmp/dest/a/b/c/file