NAME

jl - JSON in JSON log viewer

SYNOPSIS

The B<jl> command allows you to recursively decode JSON in JSON string

$ echo '{"foo":"{\"bar\":\"{\\\"baz\\\":123}\"}"}' | jl
{
   "foo" : {
      "bar" : {
         "baz" : 123
      }
   }
}

OPTIONS

depth

The number of recursive depth. (default: 10)

no-pretty

If set no-pretty option, then output JSON is not prettify. (default: false, Do prettify)

AUTHOR

Dai Okabayashi <bayashi@cpan.org>

SEE ALSO

App::jl

LICENSE

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.