Re: Problem in comparing two files using compare.pm

2007-08-29 Thread Stephen Kratzer
On Wednesday 29 August 2007 00:43:52 [EMAIL PROTECTED] wrote: > Hi, > > Please find below my code to compare 2 files > "source.txt,destination.txt" in folder "seek" > > #!perl > > use File::Compare; > > if(Compare("source.txt","destination.txt")==0) > { > print "They're equal\n"; >

Problem in comparing two files using compare.pm

2007-08-29 Thread [EMAIL PROTECTED]
Hi, Please find below my code to compare 2 files "source.txt,destination.txt" in folder "seek" #!perl use File::Compare; if(Compare("source.txt","destination.txt")==0) { print "They're equal\n"; } Please find below the error I am getting while running the code in co