in reply to Should I be using tie for this?
ARRAY ARRAY ARRAY ARRAY# This file documents Tie::File version 0.97 use Tie::File; tie @array, 'Tie::File', filename or die ...; $array[13] = 'blah'; # line 13 of the file is now 'blah' print $array[42]; # display line 42 of the file
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2:Should I be using tie for this?
by Plankton (Vicar) on Jun 16, 2004 at 20:53 UTC | |
by jeffa (Bishop) on Jun 16, 2004 at 21:29 UTC |