Catmandu::Interactive
An interactive command line interpreter of the Fix language
- Provided by: libcatmandu-perl (Version: 1.1000-2)
- Report a bug
An interactive command line interpreter of the Fix language
# On the command line
catmandu run
# Or, in Perl
use Catmandu::Interactive;
use Getopt::Long;
my $exporter = 'YAML';
GetOptions("exporter=s" => \$exporter);
my $app = Catmandu::Interactive->new(exporter => $exporter);
$app->run();
This module provide a simple interactive interface to the Catmandu Fix language.
Run the interactive environment.
Catmandu