Date: prev next · Thread: first prev next last
2011 Archives by date, by thread · List index


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


Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.