
September 4th, 2012, 11:16 AM
|
|
|
I'm not sure I understand your objection to using the diff utility, but it sounds like you're not passing it the proper option parameters.
Have you tried creating a "unified" diff?
On the Perl side, if you want to compare the files and only receive a boolean answer, then you should look at the File::Compare module.
If you want to get an actual diif which can be applied via the patch utility, then look at the Text::Diff module.
|