Thread SCP - Remote to Remote Filetransfer (7 answers)
Opened by PROXEN at 2013-07-23 12:12

Linuxer
 2013-07-23 12:58
#169029 #169029
User since
2006-01-27
3890 Artikel
HausmeisterIn

user image
Hi,

mir scheint, wenn Du Objekte erzeugst, bist Du an den gegebenen Host und den lokalen Rechner "gebunden".

Ich würde versuchen, das prozedurale Interface zu benutzen.

http://search.cpan.org/perldoc?Net::SCP#SYNOPSIS
...
Code: (dl )
1
2
3
4
5
  #procedural interface
use Net::SCP qw(scp iscp);
scp($source, $destination);
iscp($source, $destination); #shows command, asks for confirmation, and
#allows user to type a password on tty

...


Details siehe http://search.cpan.org/perldoc?Net::SCP#SUBROUTINE...

Und davor dann $souce und $destination entsprechend setzen:
Code (perl): (dl )
1
2
my $source       = "benutzer@host_B:quelle";
my $destination  = "benutzer@host_C:ziel";

Last edited: 2013-07-23 13:00:24 +0200 (CEST)
meine Beiträge: I.d.R. alle Angaben ohne Gewähr und auf Linux abgestimmt!
Die Sprache heisst Perl, nicht PERL. - Bitte Crossposts als solche kenntlich machen!

View full thread SCP - Remote to Remote Filetransfer