Thread or die ... (4 answers)
Opened by zipster at 2007-05-08 14:42

PerlProfi
 2007-05-08 19:38
#76545 #76545
User since
2006-11-29
340 Artikel
BenutzerIn
[default_avatar]
Du kannst auch einen do{} Block hinter dein || klemmen:
Code: (dl )
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();
};


MfG

View full thread or die ...