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";
>
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