App-BencherUtils

 view release on metacpan or  search on metacpan

script/format-bencher-result  view on Meta::CPAN

#!perl

# Note: This script is a CLI for Riap function /App/BencherUtils/format_bencher_result
# and generated automatically using Perinci::CmdLine::Gen version 0.501

use 5.010001;
use strict;
use warnings;

use Perinci::CmdLine::Any;

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2022-08-24'; # DATE
our $DIST = 'App-BencherUtils'; # DIST
our $VERSION = '0.245'; # VERSION

my $cmdline = Perinci::CmdLine::Any->new(
    url => "/App/BencherUtils/format_bencher_result",
    program_name => "format-bencher-result",
    config_filename => ["bencher.conf", "format_bencher_result.conf"],
);

$cmdline->run;

# ABSTRACT: Format bencher raw/JSON result
# PODNAME: format-bencher-result

__END__

=pod

=encoding UTF-8

=head1 NAME

format-bencher-result - Format bencher raw/JSON result

=head1 VERSION

This document describes version 0.245 of format-bencher-result (from Perl distribution App-BencherUtils), released on 2022-08-24.

=head1 SYNOPSIS

B<format-bencher-result> [B<--config-path>=I<path>|B<-c>|B<--no-config>|B<-C>] [B<--config-profile>=I<profile>|B<-P>] [B<--format>=I<name>|B<--json>] [B<--(no)naked-res>] [B<--no-env>] [B<--page-result>[=I<program>]|B<--view-result>[=I<program>]] -- ...

=head1 OPTIONS

C<*> marks required options.

=head2 Main options

=over

=item B<--json-arg>=I<s>*

JSON data.

Can also be specified as the 1st command-line argument.

=back

=head2 Configuration options

=over

=item B<--config-path>=I<s>, B<-c>

Set path to configuration file.

Can actually be specified multiple times to instruct application to read from
multiple configuration files (and merge them).


=item B<--config-profile>=I<s>, B<-P>

Set configuration profile to use.

A single configuration file can contain profiles, i.e. alternative sets of
values that can be selected. For example:

 [profile=dev]
 username=foo
 pass=beaver
 
 [profile=production]
 username=bar
 pass=honey

When you specify C<--config-profile=dev>, C<username> will be set to C<foo> and
C<password> to C<beaver>. When you specify C<--config-profile=production>,
C<username> will be set to C<bar> and C<password> to C<honey>.


=item B<--no-config>, B<-C>

Do not use any configuration file.

If you specify C<--no-config>, the application will not read any configuration
file.



( run in 1.689 second using v1.01-cache-2.11-cpan-39bf76dae61 )