In Perl I need to analyze a huge hash, so I print it into a file using Data::Dumper
module. Because it is a huge file, it is very hard to read. Is it possible somehow to print Dumper
output nicely, so when I will find a string that I am looking for, I will be able to see immediately key structure where the string I am looking for is stored?
Currently I am using just a simple code:
use Data::Dumper;
...
print Dumper $var;
What is the best syntax or alternative to get nice output?