Help for this page

Select Code to Download


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