I have no idea what you're getting at, because this code looks like Perl, and maybe smells like Perl, but it sure as heck won't run. It appears to be missing major parts. For example, where is $file assigned? How do you read two files with only one file handle?

use strict and -w. Begin with something like this:
#!/usr/bin/perl -w use strict; # (More program ...)
That being said, you're probably going to get a whole ton of warnings. For instance, you're trying to use a string as an array reference. There's a comment with no comment prefix.

Don't get ahead of yourself. Read in the changes file first, and then worry about the rest. Now here's an idea on how you can read it in.
open(CHANGED, "changed.txt") || die "Can't open change log\n"; my @changes = map { chomp; [ split('-', $_) ] } <CHANGED>; close(CHANGED);
This makes an array of arrays (AoA). You can read this like you expect with the rest of your code. If you want to put this in a hash, like you've suggested, thus making a hash of array of arrays (HoAoA), try using this in the loop:
$changes{$file} = \@changes;
Now that you've got the data, the rest should be a lot easier.

In reply to Re: regex with comparing by tadman
in thread regex with comparing by DS

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.