Tk has a function built in called
fileevent that is made for stuff like this.
Here's an example pretty much right out of "Learning Perl/Tk" from O'Reilly.
use Tk;
my $mw = MainWindow->new();
my $text = $mw->Scrolled("Text",
-width => 80,
-height => 25)->pack(-expand => 1);
$mw->fileevent(STDIN, 'readable', [\&insert_text]);
MainLoop;
sub insert_text
{
my $curline=<STDIN>;
$text->insert('end', $curline);
}
That seems to work very nicely with a tail command piping output to the script. The other option of course, would be to open
tail as a filehandle, like:
open(FH,"tail -f -n 1 logifle") || die "Could not tail: $!";
Then use
<FH> instead of
<STDIN> in the above.
P.S.
My wife now hates you, I've often wondered how to do similar things it Tk, but never had a driving need. Now that I looked up an answer to your question, I might just start messing around with Tk again (I can see lots of possibilites!)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.