- or download this
if(my $cnt = /^ policy-map $ouputpol/ ... / policy-map/) {
- or download this
print unless $cnt==1 || $cnt =~ /E/;
- or download this
if(($my $first = /^ policy-map $ouputpol/) ... (my $last = / policy-ma
+p/)) {
- or download this
print unless $first || $last;
- or download this
for my $i (1 .. 15) {
if(my $cnt = $i==5 ... $i==10) {
print "$i - $cnt\n";
}
}
- or download this
for my $i (1 .. 15) {
if((my $first = $i==5) ... (my $last = $i==10)) {
...
print "$i - $first / $last\n";
}
}