I would like to run a system process in the background. The system process redirects output to a file. Immediatly after that process completes, I want to run a perl function that will check for a particular string in the output file.
I am running 4 such things simultaneously.
system 1, ( "some process 1" );
system 1, ( "some process 2" );
system 1, ( "some process 3" );
system 1, ( "some process 4" );
But immediatly after each of the above process completes, I want to run my perl error checking function. Please suggest how I can run that.
I was thinking I might be able to do something like:
system 1, ( "some process 1; perl checkerror.pl" );
system 1, ( "some process 2; perl checkerror.pl" );
system 1, ( "some process 3; perl checkerror.pl" );
system 1, ( "some process 4; perl checkerror.pl" );
I have made the checkerror a function, so I don't want to make it a perl script all by itself. Any advice?
Also, is there a way I can know when all the 4 processes have completed?
Thanks
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.