On Fri, 2006-28-04 at 14:27 -0400, Jay Savage wrote: > It's actually Data::Dumper, and yes, it's a cpan module. It turns Perl > data structures into a format that can be evaled to recreate the > original structure. Storable is another cpan module--no, it's not part > of Data::Dumper--that is designed specificaly to save complex Perl > data structures to disk, and read them back in later.
Both Storable and Data::Dumper are part of the standard Perl install. You should already have them on your machine. To check if a module is already loaded: perl -M<module> -e "" Replace <module> with the module full name, e.g: perl -MStorable -e "" If the module is not loaded, you will get an error message. -- __END__ Just my 0.00000002 million dollars worth, --- Shawn "For the things we have to learn before we can do them, we learn by doing them." Aristotle * Perl tutorials at http://perlmonks.org/?node=Tutorials * A searchable perldoc is at http://perldoc.perl.org/ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>