KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17
System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64
User : nobody ( 99)
PHP Version : 5.2.17
Disable Function : NONE
Directory :  /usr/share/logwatch/scripts/logfiles/emerge/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/share/logwatch/scripts/logfiles/emerge/applydate
##########################################################################
# $Id: applydate,v 1.3 2005/06/18 19:36:32 bjorn Exp $
##########################################################################
# $Log: applydate,v $
# Revision 1.3  2005/06/18 19:36:32  bjorn
# Bug fix from Mike Frysinger for incorrect variable reference
#
# Revision 1.2  2005/05/03 19:33:39  bjorn
# Added support for new date ranges
#
# Revision 1.1  2005/04/20 22:13:32  bjorn
# Initial file by Matt Brown
#
##########################################################################

##########################################################################
# This was written by: Matt Brown,  mdbrown at uwaterloo dot ca
#
# Please send all comments, suggestions, bug reports,
#    etc, to logwatch-devel@logwatch.org.
##########################################################################


# Processes emerge logs to remove entries outside the desired date range

use strict;
use Logwatch ':dates';

my $Debug = $ENV{'LOGWATCH_DEBUG'} || 0;

# Set the date we are looking for based on the desired date range
my $SearchDate = TimeFilter('%b %d, %Y');

if ($Debug > 5) {
    print STDERR "DEBUG: Inside applydate (emerge)...\n";
    print STDERR "DEBUG: Looking For: $SearchDate\n";
}

# Examine each line of the file, writing out only the lines that are within
# the date range
my $printLine = 0;
while (defined(my $line = <STDIN>)) {
        if ($line =~ /Started emerge on: $SearchDate/) {
                $printLine = 1;
        }
        elsif ($line =~ /Started emerge on:/) {
                $printLine = 0;
        }
        print $line if ($printLine == 1);
} 

Anon7 - 2021