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

NAME

cet - console emphasis tool

VERSION

Version 2.01

SYNOPSIS

cet.pl REGEX1 [COLOR1] [REGEX2 [COLOR2]] ... [REGEXn [COLORn]]

DESCRIPTION

cet.pl is a command line tool for visually emphasizing text in log files etc. by colorizing the output matching regular expressions.

USAGE

REGEX is any regular expression recognized by Perl. For some shells this must be enclosed in double quotes ("") to prevent the shell from interpolating special characters like * or ?.

COLOR is any ANSI color string accepted by Term::ANSIColor, such as 'green' or 'bold red'.

Any number of REGEX-COLOR pairs may be specified. If the number of arguments is odd (i.e. no COLOR is specified for the last REGEX) cet.pl will use 'bold yellow'.

Overlapping rules are supported. For characters that match multiple rules, only the last rule will be applied.

EXAMPLES

In a system log, emphasize the words "error" and "ok":

    tail -f /var/log/messages | cet.pl error red ok green

In a mail server log, show all email addresses between <> in white, successes in green:

    tail -f /var/log/maillog | cet.pl "(?<=\<)[\w\-\.]+?\@[\w\-\.]+?(?=\>)" "bold white" "stored message|delivered ok" "bold green"

In a web server log, show all URIs in yellow:

    tail -f /var/log/httpd/access_log | cet.pl "(?<=\"get).+?\s"

BUGS AND LIMITATIONS

Multi-line matching is not implemented.

All regular expressions are matched without case sensitivity.

AUTHOR

Andreas Lund floyd at atc.no

MAINTAINER

C Hutchinson taint at cpan.org

COPYRIGHT

Copyright 2009-2013 Andreas Lund floyd at atc.no.

LICENSE

This program is free software. You may redistribute it and/or modify it under the same terms as Perl itself.