Hi Christian,

Christian Lohmaier píše v Út 15. 02. 2011 v 16:01 +0100:

> > BTW - calling 'cat' is a curious thing, can we change that to something
> > more Perl? ;-)
> 
> Well, not sure whether it is really preferable, but instead of
> system("cat $log_file");
> 
> a perl-only way would be
> 
> open(LOGFILE, "< $log_file");
> print while(<LOGFILE>);
> close(LOGFILE);

Thank you, pushed this :-)  Avoiding unnecessary forking is always good,
I'd say.

Regards,
Kendy

_______________________________________________
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice

Reply via email to