ARGV-JSON
view release on metacpan or search on metacpan
# NAME
ARGV::JSON - Parses @ARGV for accessing JSON via `<>`
# SYNOPSIS
use ARGV::JSON;
while (<>) {
# $_ is a decoded JSON here!
}
Or in one-liner:
perl -MARGV::JSON -anal -E 'say $_->{foo}->{bar}' a.json b.json
# DESCRIPTION
ARGV::JSON parses each input from `@ARGV` and enables to access
the JSON data structures via `<>`.
lib/ARGV/JSON.pm view on Meta::CPAN
=head1 NAME
ARGV::JSON - Parses @ARGV for accessing JSON via C<< <> >>
=head1 SYNOPSIS
use ARGV::JSON;
while (<>) {
# $_ is a decoded JSON here!
}
Or in one-liner:
perl -MARGV::JSON -anal -E 'say $_->{foo}->{bar}' a.json b.json
=head1 DESCRIPTION
ARGV::JSON parses each input from C<< @ARGV >> and enables to access
the JSON data structures via C<< <> >>.
( run in 0.343 second using v1.01-cache-2.11-cpan-26ccb49234f )