Help for this page

Select Code to Download


  1. or download this
    open( LOG, $filepath );
    while ( <LOG> ) { print }
    close( LOG );
    
  2. or download this
    while(<$filepath>) { print " $_"; } 
    close ( $filepath );
    while (<$filepath2>) { print "$_"; } 
    close ( $filepath2 );