Thread Echten Parallelprozess unter Linux
(42 answers)
Opened by bianca at 2013-11-01 11:00
die warnung wird von dem open $datei generiert. warum, wird in dem artikel bzw. dem perlbugticket erklärt.
warum sollte man warnings also nicht genau davor abschalten? Code (perl): (dl
)
1 2 3 4 5 6 close STDOUT; open my $fh, "<", "/tmp/testfile"; warn fileno($fh); __END__ Filehandle STDOUT reopened as $fh only for input at -e line 3. 1 at -e line 4. Code (perl): (dl
)
1 2 3 4 5 6 close STDOUT; no warnings "io"; open my $fh, "<", "/tmp/testfile"; warn fileno($fh); __END__ 1 at -e line 5. 5.10.1, 5.16.0 Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |