The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

dump-nconf - Dump resulting configuration file data structure

SYNOPSIS

dump-nconf /path/to/file.nconf [--mode=<mode>]

Supported modes:

neat

Use Config::Neat::Render to print out the data structure (default mode)

dumper

Print out the data structure using Data::Dumper

json

Print out the data structure as JSON

DESCRIPTION

This script will read and parse the provided configuration file, apply its inheritance rules, and dump the resulting data structure using Config::Neat::Render, Data::Dumper or JSON methods.

This is useful to understand the data structure behind you configuration files in general and debug inheritance rules in particular.

AUTHOR

Igor Afanasyev <igor.afanasyev@gmail.com>