i have the following output.Now i like to print the highest priority files with its directory links have can i do it using perl?

Available Input directory structure:
html `-- DEMO |-- DEMO_.html |-- top | |-- DV | | |-- DEMO_top__DV_.html | | |-- rev1 | | | `-- DEMO_top_DV_rev1_.html | | `-- rev2 | | `-- DEMO_top_DV_rev2_.html
Expected:
html `-- DEMO |-- DEMO_.html |-- top | |-- DV | | |-- DEMO_top__DV_.html | | `-- rev2 | | `-- DEMO_top_DV_rev2_.html

1.depending upon the greatest number of filenames the directory should be linked with the file.

2.The above linux comamnd fails for me.Let me know how to do it with perl or linux.

my $location = $output_dir; open LOGFILE, $location; my $first_line = 1; my $max_id; while (<LOGFILE>) { if (/_(\d)+/) { if ($first_line) { $first_line = 0; $max_id = $1; } else { $max_id = $1 if ($1 > $max_id); } } }

In reply to [OT] How to take only the links of files which has high prirority links using perl? by finddata

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.