Help for this page

Select Code to Download


  1. or download this
    # using Test::More...
    
    ...
    is($proc->data($some_filename),"data for filename");
    
    $proc->close();
    
  2. or download this
    my $proc = Data::Processor->( file => "some filename");
    # or                          handle => \*DATA
    ...
      $proc->write( $some_filename, file => $name      );
    # or                            handle => \*STDOUT
    }