Help for this page

Select Code to Download


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