sub find_missing_files { use strict; use warnings; use List::Compare; open F, "; my @b=; my $lc = List::Compare->new(\@a,\@b); my @intersection = $lc->get_intersection; my @firstonly = $lc->get_unique; my @secondonly = $lc->get_complement; #print "Common Items:\n"."@intersection"."\n"; print "Please configure and create dump in Databse for this competitors !!\n"."\n@firstonly"."\n"; print "please give the input URL for the following competitiors !!\n"."\n@secondonly"."\n"; } }