How can I make Data::Dumper write a dump into a file?
|
|
Don't forget that you can specify the file handle to
or use File::Slurp:
Further thoughts: You might want to get into the habit of using:
and redirecting standard error to a file when you invoke your script (how you do this depends on the shell). For example:
|
||||
|
|
|
Use print
|
||
|
|
|
|
The question is a bit unclear, but are you looking for something like this?
You can restore the data later by using |
||||||
|

Dumper()simply outputs a string, use it like any other string going to a file (see below). – Jack M. Jul 14 at 15:25