in reply to Re^3: How can you sysread an entire file?
in thread How can you sysread an entire file?
Does that help set the scene a little better? :)my $rec; sysopen(DF,"test.txt", O_RDONLY | O_CREAT); sysread(DF, $rec, -s DF); close DF; # Split up records into array. # Will lose \n on recs - add later. @test=split("\n",$rec); # Do some work on @test Work... Work... Work... # Build up into a single record, putting \n back in my $rec;foreach(@test){$rec.=$_."\n";} sysopen(DF,"test.txt", O_WRONLY | O_CREAT); syswrite DF,$rec; close DF;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: How can you sysread an entire file?
by BrowserUk (Patriarch) on Jan 14, 2006 at 17:56 UTC | |
by NeilF (Sexton) on Jan 14, 2006 at 19:54 UTC |