Hi Jan, *,

On Tue, Feb 15, 2011 at 10:48 AM, Jan Holesovsky <ke...@suse.cz> wrote:
> On 2011-02-02 at 19:39 +0100, Michael Koch wrote:
>
> 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);

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

Reply via email to