package App::JsonLogUtils;
# ABSTRACT: Command line utilities for dealing with JSON-formatted log files
$App::JsonLogUtils::VERSION = '0.03';
use strict;
use warnings;
use Fcntl qw(:see
use JSON::XS qw(decode_json encode_json);
use Time::HiRes qw(sleep);
use Term::SimpleColor;
use parent 'Exporter';
our @EXPORT_OK = qw(
lines
tail
json_log
json_cols
json_cu
t
json_grep
);
#-------------------------------------------------------------------------------
# Internal utilities
#------------------------------------------------------------------------------