????

Your IP : 3.131.38.208


Current Path : /usr/local/share/man/man1/
Upload File :
Current File : //usr/local/share/man/man1/json_pp.1

.\" Automatically generated by Pod::Man 2.22 (Pod::Simple 3.13)
.\"
.\" Standard preamble:
.\" ========================================================================
.de Sp \" Vertical space (when we can't use .PP)
.if t .sp .5v
.if n .sp
..
.de Vb \" Begin verbatim text
.ft CW
.nf
.ne \\$1
..
.de Ve \" End verbatim text
.ft R
.fi
..
.\" Set up some character translations and predefined strings.  \*(-- will
.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
.\" double quote, and \*(R" will give a right double quote.  \*(C+ will
.\" give a nicer C++.  Capital omega is used to do unbreakable dashes and
.\" therefore won't be available.  \*(C` and \*(C' expand to `' in nroff,
.\" nothing in troff, for use with C<>.
.tr \(*W-
.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
.ie n \{\
.    ds -- \(*W-
.    ds PI pi
.    if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
.    if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\"  diablo 12 pitch
.    ds L" ""
.    ds R" ""
.    ds C` ""
.    ds C' ""
'br\}
.el\{\
.    ds -- \|\(em\|
.    ds PI \(*p
.    ds L" ``
.    ds R" ''
'br\}
.\"
.\" Escape single quotes in literal strings from groff's Unicode transform.
.ie \n(.g .ds Aq \(aq
.el       .ds Aq '
.\"
.\" If the F register is turned on, we'll generate index entries on stderr for
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
.\" entries marked with X<> in POD.  Of course, you'll have to process the
.\" output yourself in some meaningful fashion.
.ie \nF \{\
.    de IX
.    tm Index:\\$1\t\\n%\t"\\$2"
..
.    nr % 0
.    rr F
.\}
.el \{\
.    de IX
..
.\}
.\" ========================================================================
.\"
.IX Title "JSON_PP 1"
.TH JSON_PP 1 "2016-04-21" "perl v5.10.1" "User Contributed Perl Documentation"
.\" For nroff, turn off justification.  Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
.nh
.SH "NAME"
json_pp \- JSON::PP command utility
.SH "SYNOPSIS"
.IX Header "SYNOPSIS"
.Vb 1
\&    json_pp [\-v] [\-f from_format] [\-t to_format] [\-json_opt options_to_json]
.Ve
.SH "DESCRIPTION"
.IX Header "DESCRIPTION"
json_pp converts between some input and output formats (one of them is \s-1JSON\s0).
This program was copied from json_xs and modified.
.PP
The default input format is json and the default output format is json with pretty option.
.SH "OPTIONS"
.IX Header "OPTIONS"
.SS "\-f"
.IX Subsection "-f"
.Vb 1
\&    \-f from_format
.Ve
.PP
Reads a data in the given format from \s-1STDIN\s0.
.PP
Format types:
.IP "json" 4
.IX Item "json"
as \s-1JSON\s0
.IP "eval" 4
.IX Item "eval"
as Perl code
.SS "\-t"
.IX Subsection "-t"
Writes a data in the given format to \s-1STDOUT\s0.
.IP "null" 4
.IX Item "null"
no action.
.IP "json" 4
.IX Item "json"
as \s-1JSON\s0
.IP "dumper" 4
.IX Item "dumper"
as Data::Dumper
.SS "\-json_opt"
.IX Subsection "-json_opt"
options to \s-1JSON::PP\s0
.PP
Acceptable options are:
.PP
.Vb 2
\&    ascii latin1 utf8 pretty indent space_before space_after relaxed canonical allow_nonref
\&    allow_singlequote allow_barekey allow_bignum loose escape_slash
.Ve
.SS "\-v"
.IX Subsection "-v"
Verbose option, but currently no action in fact.
.SS "\-V"
.IX Subsection "-V"
Prints version and exits.
.SH "EXAMPLES"
.IX Header "EXAMPLES"
.Vb 2
\&    $ perl \-e\*(Aqprint q|{"foo":"あい","bar":1234567890000000000000000}|\*(Aq |\e
\&       json_pp \-f json \-t dumper \-json_opt pretty,utf8,allow_bignum
\&    
\&    $VAR1 = {
\&              \*(Aqbar\*(Aq => bless( {
\&                                \*(Aqvalue\*(Aq => [
\&                                             \*(Aq0000000\*(Aq,
\&                                             \*(Aq0000000\*(Aq,
\&                                             \*(Aq5678900\*(Aq,
\&                                             \*(Aq1234\*(Aq
\&                                           ],
\&                                \*(Aqsign\*(Aq => \*(Aq+\*(Aq
\&                              }, \*(AqMath::BigInt\*(Aq ),
\&              \*(Aqfoo\*(Aq => "\ex{3042}\ex{3044}"
\&            };
\&
\&    $ perl \-e\*(Aqprint q|{"foo":"あい","bar":1234567890000000000000000}|\*(Aq |\e
\&       json_pp \-f json \-t dumper \-json_opt pretty
\&    
\&    $VAR1 = {
\&              \*(Aqbar\*(Aq => \*(Aq1234567890000000000000000\*(Aq,
\&              \*(Aqfoo\*(Aq => "\ex{e3}\ex{81}\ex{82}\ex{e3}\ex{81}\ex{84}"
\&            };
.Ve
.SH "SEE ALSO"
.IX Header "SEE ALSO"
\&\s-1JSON::PP\s0, json_xs
.SH "AUTHOR"
.IX Header "AUTHOR"
Makamaka Hannyaharamitu, <makamaka[at]cpan.org>
.SH "COPYRIGHT AND LICENSE"
.IX Header "COPYRIGHT AND LICENSE"
Copyright 2010 by Makamaka Hannyaharamitu
.PP
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.