Help for this page

Select Code to Download


  1. or download this
    ========================================================
    Net Stuff
    ...
                            frank
    
  2. or download this
    while(<>) {
       if ( /^Services$/ .. /^Users$/ ) {
          print "$_";
       }
    }
    
  3. or download this
    while(<>) {
       if ( /^=*Services$/m .. /^=*Users$/m ) {
          print "$_";
       }
    }