Help for this page

Select Code to Download


  1. or download this
    if ( -s "$path_only/$file_name" > $last_maxsize ) {
        local $/ = \$last_maxsize;
    ...
        print OUT;
        close OUT;
    }
    
  2. or download this
        while ( my $new_record = <$last_in> ) {      
            next if -s $new_record > $last_maxsize;
            ...