Help for this page

Select Code to Download


  1. or download this
    while ( reading from the input file yields a line of data ) {
       if ( the line begins with "RS," ) {
    ...
          print $line_out with the current line appended to it.
       }
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
            print $line_out . $_;
        }
    }