Thread Variable als Dateihandle gibt Fehlermeldung:Can't use string ("HANDLE_1") as a symbol ref while "strict refs" in use at (3 answers)
Opened by trojax at 2009-06-29 08:06

Linuxer
 2009-06-29 10:14
#122718 #122718
User since
2006-01-27
3891 Artikel
HausmeisterIn

user image
Hi,

warum nimmst Du keine lexikalische Variable?

Versuch doch mal folgendes:
Code (perl): (dl )
1
2
3
4
for $datei_aktuell ( @$dateien ) {
  open my $handle, '<', $datei_aktuell or die "$datei_aktuell: open failed: $!\n";
  push @Handles, $handle;
}
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 Variable als Dateihandle gibt Fehlermeldung:Can't use string ("HANDLE_1") as a symbol ref while "strict refs" in use at