First, let me say that you have very peculiar kind of merge. At first I didn't completely understand what you were trying to do.
Instead of emitting the results of the first script to a file, you need to save them in a perl data structure. An AOH (array of hashes) would probably work well here. Also, I'd keep track of the comment lines as you generate them in the first script.
In your first script, instead of printing a comment line to NEW_GEN, do this:
$comment{$lineno++} = $_;
And instead of printing an id line to NEW_GEN, do this:
push(@lines, { id => $id, line => $_ }); $lineno++;
Then the second script becomes:
@lines = sort { $a->{id} <=> $b->{id} } @lines;
for (0..$lineno-1) {
if (exists $comment{$_}) { print $comment{$_}; }
else { my $x = shift(@lines); print $x->{line}; }
}
# @lines should be empty at this point
This will keep the comment lines in their original places while sorting the id lines.
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.