5 Einträge, 1 Seite |
File::Copy::copy( $srcpath, $dstpath ) || die print FILE strftime "%a, %d %b %Y %H:%M:%S Es ist ein Fehler beim...", localtime;
1
2
&error_email($Config{smtp},$Config{from}, $Config{to}, $Config{subject}, "FEHLER:...");
&start_vmmaschine;
1
2
3
4
5
C:\Dokumente und Einstellungen\Renee>perl "open my $fh, './hallowelt.txt' or
send_mail(), do_something(), die 'died';
sub send_mail{ print qq°send_mail\n°}
sub do_something{ print qq~do_something\n~}
1
2
3
4
5
6
File::Copy::copy( $srcpath, $dstpath ) || do {
print FILE strftime "%a, %d %b %Y %H:%M:%S Es ist ein Fehler beim...", localtime;
&error_email($Config{smtp},$Config{from}, $Config{to}, $Config{subject}, "FEHLER:...");
&start_vmmaschine;
die();
};
1
2
3
4
5
6
if (not File::Copy::copy( $srcpath, $dstpath )) {
error_email($Config{smtp},$Config{from}, $Config{to} $Config{subject}, "FEHLER:...");
start_vmmaschine();
print FILE strftime("%a, %d %b %Y %H:%M:%S Es ist ein Fehler beim...", localtime);
die;
}
5 Einträge, 1 Seite |