in reply to How do I save a nested structure to a file (and read it later)?

I've got a personal favourite of FreezeThaw which is pretty friendly, and does the job nicely.
  • Comment on Re: How do I save a nested structure to a file (and read it later)?

Replies are listed 'Best First'.
Re: Answer: How do I save a nested structure to a file (and read it later)?
by Anonymous Monk on Apr 17, 2001 at 17:29 UTC
    FreezeThaw will definitely do the job, you might also want to look into Data::Dumper - especially if you want to manually edit the data while it's in the file.
    print FILE Dumper(%foo); $bar = <FILE>; %foo = eval{$bar};