First of all, find should give you all of your files with a single command:
find /rms -name 'COOL-event-log*' -exec <perl-script> {} ';'
Unless there are files in the /rms directory tree with the same name that you don't want to edit. You should be able to modify the command to exclude those.

Does this application keep these logfiles open for as long as it's running, and is it running all the time? Because if it doesn't close the file between runs, then you can't do this at all.

Are you sure the application won't try to run while your script is running? If it does, then you'll have a race-condition.

Parsing a single event file in a perl script to remove old entries is a pretty simple program. It can open the file passed to it, write the edited results to the '.new' file, then move it over

fnord


In reply to Re: There is a space issue in the prod server, its require to delete the old log lines i.e. the log lines which tracked on 2011 and past from all the applications event-logs by Illuminatus
in thread There is a space issue in the prod server, its require to delete the old log lines i.e. the log lines which tracked on 2011 and past from all the applications event-logs by perladdict

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.