Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^4: Getting error when trying to compare two files

by adalamre (Initiate)
on Nov 16, 2015 at 07:18 UTC ( [id://1147782]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Getting error when trying to compare two files
in thread Getting error when trying to compare two files

Hi, I want to compare all the content and report all differences. Also I am facing some challenge in comparing like when I have captured the content from Linux, it may not match against output from Windows (and vice-versa) since the line ending pattern of Windows would contain a \r\n (That’s a carriage return followed by linefeed) instead of a plain \n in the case of Linux. Please let me know how I can handle these Also can you please let me know how to use Algorithm::Diff

  • Comment on Re^4: Getting error when trying to compare two files

Replies are listed 'Best First'.
Re^5: Getting error when trying to compare two files
by Happy-the-monk (Canon) on Nov 16, 2015 at 09:12 UTC

    I want to compare all the content and report all differences.

    If you feel better at home with external commands, diff is the one you should be looking at.

    Also I am facing some challenge in comparing like when I have captured the content from Linux, it may not match against output from Windows (and vice-versa) since the line ending pattern of Windows would contain a \r\n (That’s a carriage return followed by linefeed) instead of a plain \n in the case of Linux. Please let me know how I can handle these

    There are a few options for that. Again if you prefer external commands, look for dos2unix or unix2dos. In Perl, you can substitute with s/\015\012/\012/ - depending on your beforehand knowledge of the size of the files, if they are small, you can treat the whole file in one go or use a while loop to save memory and sacrifice time instead.

    can you please let me know how to use Algorithm::Diff

    Have you tried using some example from the Algorithm::Diff documentation? Did it produce an unforeseen result?

    Again, the question of size may hit you here again. Just for the first go, I'll hope it doesn't ;-)

    Cheers, Sören

    Créateur des bugs mobiles - let loose once, run everywhere.
    (hooked on the Perl Programming language)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1147782]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (6)
As of 2024-04-23 14:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found