Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl -w use Text::ParseWords; use strict; my (@lines, @fields, @rules, @date, @time, @rearranged); my ($item, $date, $time, $rule); my %count; if($#ARGV <0) { print "usage: cpruleauditor <CheckPoint CSV File> \n"; exit 0; } my $log = $ARGV[0]; open (LOGFILE, "$log") || die "Could not open file: $! \n"; @lines = <LOGFILE>; close (LOGFILE); my $header = $lines[0]; @fields = quotewords(";",0,$header); my $count = 0; validate(); print "Processing file.....please be patient \n\n"; my $value; foreach $value (@fields) { if ($value =~ /rule/) { $rule = $count; } if ($value =~ /date/) { $date = $count; } if ($value =~ /time/) { $time = $count; } $count++; } shift @lines; foreach $item (@lines) { @fields = quotewords(";",0,$item); unless ($fields[$rule] lt 1 ) { push (@rules, $fields[$rule]); } push (@date, $fields[$date]); push (@time, $fields[$time]); } my $enddate = @date - 1; my $endtime = @time - 1; print "The log file covers the period \n"; print "$date[0] $time[0] to $date[$enddate] $time[$endtime] \n\n"; count_rules(@rules); @rearranged = sort{$a <=> $b} keys %count; foreach (@rearranged) { print "rule number \t $_ \t appears \t $count{$_} \t time(s) \n"; } sub validate { if ($fields[0] !~ /num/) { print "The file specified does not appear to be a valid CheckPoint CSV + file \n"; exit 0; } } sub count_rules { map { $count{$_}++ } @rules; return %count; }

In reply to CheckPoint rule auditor by semio

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (3)
As of 2024-04-19 20:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found