Help for this page

Select Code to Download


  1. or download this
    while( <FILE> ) {
       if( my $pos = index( $_, '--foo' ) ) {
    ...
          print substr( $_, $pos, length($_) - $pos );
       }
    }