http://www.perlmonks.org?node_id=1003226


in reply to tie::file function

Using Tie::File:

#! perl use strict; use warnings; use Data::Dump; use Tie::File; my @array = ('x', 'y', 'z'); dd @array; tie @array, 'Tie::File', 'data.txt'; dd @array; untie @array; dd @array;

With file data.txt as follows:

AAA BBBBBB C DDDD

Output:

14:32 >perl 378_SoPW.pl ("x", "y", "z") ("AAA", "BBBBBB", "C", "DDDD") ("x", "y", "z") 14:32 >

So, @array neither retains the values of the file, nor does it fall empty. Rather, it resumes the values it had before the tie.

Hope that helps,

Athanasius <°(((><contra mundum

Replies are listed 'Best First'.
Re^2: tie::file function
by PriNet (Monk) on Nov 10, 2012 at 04:39 UTC
    got it ... thanx

    So there's a harder way?
    I need to try that !
      So there's a harder way?
      I need to try that !

      So would doing the experiment that Athanasius performed and reported have been harder than asking the OPed question? More typing would certainly have been involved, but the potential return for the extra effort might have been very worthwhile, as an answer gained by your own efforts might have been more enlightening, and the answer to one question might have led to other questions and to a yet deeper understanding of mechanisms, possibilities, difficulties. The path of direct experience would have been more work, but perhaps much more profitable; it's possible the original question was the harder road after all.