Thread SCP/SFTP Datei von Fremdsystem holen (10 answers)
Opened by Gast at 2008-02-29 08:53

Gast Gast
 2008-02-29 14:20
#106503 #106503
So habe nochmals gespielt ...

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/perl

use warnings;
use strict;

use Net::SFTP;

my %args = (
                user        => 'login',
                password    => 'password',
                debug       => 0
            );

my $tag = `/bin/date +"%s"`;
chomp($tag);

my $datum = `/usr/bin/expr $tag / 86400`;
chomp($datum);

my $sftp = Net::SFTP->new("IP-ADRESSE hier eintragen", %args);

my $remote = "/entferntes-verzeichnis/datei.asc". $datum .".tar.gz";
my $local  = "/locales-verzeichnis/datei.asc" .  $datum .".tar.gz";
$sftp->get($remote, $local);



print "fertig\n";

View full thread SCP/SFTP Datei von Fremdsystem holen