The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

ltsvl.pl - Line filter of LTSV text

SYNOPSIS

    $ cat /path/to/yourtext.ltsv | ltsvl.pl [Options]

    Options:
      --key|-k         keys to output
      --no-color|C     don't colorize output
      --no-key|K       output only values and don't colorize output
      --no-buffer|B    don't buffering output
      --help|-h        brief help message
      --man            full documentaion

OPTIONS

--key|-k

Keys which you want to output.

--no-color|-C

Don't colorize output.

--no-key|-K

Don't output labels, but only values. If you specify this option, you won't get colorized output (like --no-color).

--no-buffer|-B

Don't buffering output. If you specify this option, will be flush right away all print to currently selected output.

--man

Prints the manual page and exit

DESCRIPTION

Labeled Tab-separated Values (LTSV) format is a variant of Tab-separated Values (TSV). (cf: http://ltsv.org/) This script simply filters text whose format is LTSV by specified keys.

AUTHORS

IKEDA Kiyoshi <yasutake.kiyoshi@gmail.com>

LICENSE

Copyright (C) 2013-2017 IKEDA Kiyoshi.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. That means either (a) the GNU General Public License or (b) the Artistic License.

SEE ALSO

Text::LTSV::Liner