Help for this page

Select Code to Download


  1. or download this
        use File::Edit::Portable;
    
    ...
        my $fh = $rw->read('file.txt');
        ...
        $rw->write(contents => $fh);
    
  2. or download this
        my @contents = $rw->read('file.txt');
    
    ...
        }
        
        $rw->write(contents => \@contents);