在 Perl 中,如何将 Dumper 的输出写入文件?
如何使 Data::Dumper
将转储写入一份文件?
How can I make Data::Dumper
write a dump into a file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使 Data::Dumper
将转储写入一份文件?
How can I make Data::Dumper
write a dump into a file?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
不要忘记您可以指定要
print
的文件句柄,如或使用 File::Slurp:
进一步的想法: 您可能希望养成使用以下习惯:
并在调用脚本时将标准错误重定向到文件(如何执行此操作)取决于外壳)。 例如:
Don't forget that you can specify the file handle to
print
to as inor 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
这个问题有点不清楚,但是你在寻找这样的东西吗?
您可以稍后使用
eval
恢复数据。The question is a bit unclear, but are you looking for something like this?
You can restore the data later by using
eval
.