1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
#!/usr/bin/perl -w
##########################################################################
# $Id: expandrepeats,v 1.5 2002/10/13 15:24:27 kirk Exp $
##########################################################################
########################################################
# This was written and is maintained by:
# Kirk Bauer <kirk@kaybee.org>
#
# Please send all comments, suggestions, bug reports,
# etc, to kirk@kaybee.org.
#
########################################################
# This used to expand "Last Message Repeated n Times" messages in
# standard syslog files. Now, I have decided it is much better to
# just ignore the repeats, as otherwise our temporary logfiles will
# be too huge.
$LastLine = "";
while (defined($ThisLine = <STDIN>)) {
if ($ThisLine =~ m/last message repeated ([0123456789]+) times$/) {
# Just ignore these lines
#for ($i=0;$i<$1;$i++) {
# print $LastLine;
#}
}
else {
print $ThisLine;
$LastLine = $ThisLine;
}
}
|