I might write this, if I didn't care if anyone can read it.

my @job_nums = 0 .. $jobs_run; my $logs = join q{ }, map { sprintf "$prefix%04d.log" } @job_nums; my $tail_rx = qr{ ==> (.+?) <== \n ( [^\n]* ) \n }xms; my @tail_pairs = `tail -n 1 $logs` =~ $tail_rx; unlink map { s/\.log$/.data/; $_ } map { $tail_pairs[$_*2] } grep { $tail_pairs[1+$_*2] !~ /Normal/ } @job_nums;

Note that I haven't tried this, and given that it calls unlink, one would do well to test it with a copy of real data before trying it with real data.

This has the advantages that it shells out to run tail only once on the list of every log file and that it calls unlink only once with the list of the files to delete. On the other hand, the heavy use of map and grep means it does more looping than is absolutely necessary.


In reply to Re: Efficient deletion of files / shell interaction by kyle
in thread Efficient deletion of files / shell interaction by madd

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.