Help for this page

Select Code to Download


  1. or download this
    while (<>) {
     chomp if /^CLI\b/;
    ...
     chomp($line) if $line =~ /^CLI\b/;
     print $line;
    }
    
  2. or download this
    my @lines;
    my $last_line_was_CLI = 0;
    ...
      push @lines, $_;
     }
    }