Thread Output in Konsole und in Datei
(13 answers)
Opened by roli at 2009-07-25 21:05
Ja, sicher, das geht auch.
Aber wer will denn bitte immer pprint schreiben. ;) Wenn schon, dann eher so, obwohl das print auch komisch geschrieben wird: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 #!/usr/bin/perl use strict; use warnings; my $REDIR; sub print; sub tee; sub tee { $REDIR = shift; } sub print { CORE::print $REDIR @_; CORE::print @_; } tee(*STDERR); ::print 123; Auch nicht besonders shon, aber machbar. |