Skip to content

motemen/perl5-ARGV-JSON

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 <>.

Each readline call to <> (or <ARGV>) returns a hashref or arrayref or something that the input serializes in the JSON format.

SEE ALSO

ARGV::URL.

LICENSE

Copyright (C) motemen.

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

AUTHOR

motemen motemen@gmail.com

About

Parses @argv for accessing JSON data via <>

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages