use Text::Diff;
$diff = diff(*FH1, *FH2);
$diff = diff($FILENAME_1, $FILENAME_2, { STYLE => "Context" });
In addition to filehandles, diff can also take
filenames, strings, and even arrays of records. Pass a hash of
options as the third argument. The STYLE option
controls the type of output returned; it can be
"Unified" (the default),
"Context", or "OldStyle". You
can even write your own class for custom diff formats.
The value returned by diff is a string similar to
the output of the diff(1) program. This string
is in valid diff format, suitable for feeding into
patch(1). Although Text::Diff will not always
produce the same output as GNU diff, byte for
byte, its diffs are nevertheless correct.