Help for this page

Select Code to Download


  1. or download this
    foreach ($textline = <LOG>) {
    
  2. or download this
    foreach my $textline ( <LOG> ) {
    # or, much better:
    while(  defined( $textline= <LOG> )  ) {