- or download this
while(<>) {
if (my $r = /^Services/ .. /^Users/ ) {
...
last if $r =~ /E0$/;
}
}
- or download this
while(<>) {
if (my $r = /^Services/ .. /^Users/ ) {
...
}
}
- or download this
while(<>) {
if (my $r = /^Services/ .. /^Users/ ) {
...
last if $r =~ /E0$/;
}
}