Leser: 1
10 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
...............................................................................
# prüfen ob file vorhanden ist
my $check= grep /\Q$new\E/, $ftp->ls;
if ($check) { die "achtung file existiert !\n" and next;
{
#nur wenn file vorhanden eine error mail schicken
open(MAIL, "|/usr/sbin/sendmail -t") || die "Cant send mail. Reason:
+$!";
print MAIL "from:$sender\n";
print MAIL "to:$recipient\n";
print MAIL "subject: file existiert !\n";
print MAIL "file existiert ! \n";
close(MAIL);
}
}
#quit FTP
$ftp->quit;
...............................................................................
print MAIL "subject: file existiert !\n\n";
my $check = grep { $_ eq $new } $ftp->ls;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# prüfen ob file vorhanden ist
my $check = grep { $_ eq $new } $ftp->ls;
if ($check) {
#nur wenn file vorhanden eine error mail schicken
open(MAIL, "|/usr/sbin/sendmail -t") || die "Cant send mail. Reason:
+$!";
print MAIL "from:$sender\n";
print MAIL "to:$recipient\n";
print MAIL "subject: file existiert !\n";
print MAIL "file existiert ! \n";
close(MAIL);
die "achtung file existiert !\n" and next;
}
#quit FTP
$ftp->quit;
die "achtung file existiert !\n" and next;
print "achtung file existiert !\n" and next;
10 Einträge, 1 Seite |