Help for this page
open(my $fh, '<', $inputs) or die ... ... while (<$fh>) { ... } close($fh); # Optional.
if ($line =~ /\Q$string\E/) { ... }
if ($line eq $string) { ... }