- or download this
my $host = lc(shift(@_));
- or download this
my @lines = grep { lc($_) eq $host } @ry;
- or download this
use List::Util qw( first );
my $line = first { lc($_) eq $host } @ry;
- or download this
use List::Util qw( first );
my $line = first { lc($_) eq $host } <$fh>;
- or download this
sub get_comments {
my $host = lc(shift(@_));
...
return;
}