package App::PipeFilter::JsonCat; { $App::PipeFilter::JsonCat::VERSION = '0.005'; } use Moose; extends 'App::PipeFilter::Generic::Json'; with 'App::PipeFilter::Role::Transform::None'; 1; __END__ =pod =head1 NAME App::PipeFilter::JsonCat - useless use of cat(1) for JSON streams =head1 VERSION version 0.005 =head1 SYNOPSIS Here is the jcat(1) pipeline filter. #!/usr/bin/perl use App::PipeFilter::JsonCat; exit App::PipeFilter::JsonCat->new_with_options()->run(); =head1 DESCRIPTION App::PipeFilter::JsonCat implements the jcat(1) pipeline filter. Please see jcat(1) for usage instructions. This module subclasses L and consumes L to leave the data unchanged. =head1 SEE ALSO You may read this module's implementation in its entirety at perldoc -m App::PipeFilter::JsonCat L has top-level documentation including a table of contents for all the libraries and utilities included in the project. =head1 BUGS L =head1 REPOSITORY L =head1 COPYRIGHT AND LICENSE App::PipeFilter::JsonCat is Copyright 2011 by Rocco Caputo. All rights are reserved. App::PipeFilter::JsonCat is released under the same terms as Perl itself. =cut # vim: ts=2 sw=2 expandtab