in reply to A continually running process
#!/usr/bin/perl use warnings; use strict; use Tk; my $mw = new MainWindow; $mw->withdraw; $mw->repeat(1000, \&launch); MainLoop; sub launch{ system( "date" ); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: A continually running process
by BrowserUk (Patriarch) on Jun 26, 2008 at 13:28 UTC | |
by zentara (Cardinal) on Jun 26, 2008 at 18:22 UTC |