Hi.
I'm writing a script, which shall be capable of running an external application in the background, catching its STDOUT and STDERR and then write it into a logfile.
The problem is, that the application never exits (e.g. think of edonkey client) and the name of the logfile changes every day.
I tried the following:
while (1){
#generate filename for today => $SCRIPTLOG
if ($SCRIPTLOG ne $SCRIPTLOG_OLD){
if ($pid ne "") {
close(LOGTO);
}
open(LOGTO, ">> $SCRIPTLOG")
select(LOGTO);
}
$SCRIPTLOG_OLD=$SCRIPTLOG;
if ($pid eq "") $pid=open3(NULL, ">&LOGTO", ">&LOGTO", "application.ex
+e $parameters");
sleep(30);
}
So every 30 secs is tested if a new day has broken and if so, the logfile $SCRIPTLOG is changed.
However, this doesn't work. application.exe still writes in the old $SCRIPTFILE.
Please help! I already asked in two other Perl places on the web, but they didn't know a solution, either :(
Thorsten
20030410 Edit by Corion: Fixed small typo in title (s/cath/catch/)
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.