open APPEND, ">>conversion.txt"; foreach $line1 (@lines1) { foreach $line2 (@lines2) { print APPEND $line2 if $line2 =~ /$line1/; } } close APPEND;