- or download this
if ($line =~ /DOWN/) {
# ...
} elsif ($line =~ /PROBLEM/) {
# ...
}
- or download this
my $error = "DOWN";
my $warn = "PROBLEM";
...
} elsif ($line =~ /$warn/) {
# ...
}
- or download this
my $error = "Server ... DOWN";
if ($line =~ /$error/) {
# conditional clause
}