#!/usr/bin/perl -w
use strict;
my ($readline,$found);
my @aok=("Loading Vxd =", # A list of all the different va
+lues
"LoadSuccess =", # that should be ignored. Others
+ are
"Loading Device =", # left in for debugging purposes
+.
"LoadSuccess =",
"SYSCRITINIT =",
"SYSCRITINITSUCCESS =",
"DEVICEINIT =",
"DEVICEINITSUCCESS =",
"Dynamic init device ",
"Dynamic init success",
"Dynamic load device ",
"Dynamic load success",
"Initing",
"Init Success",
"INITCOMPLETE =",
"INITCOMPLETESUCCESS =",
"LoadStart =",
"Init =",
"InitDone =",
"Status =");
open BOOTLOG, "<C:\\bootlog.txt" or die ("Error: could not open c:\\bo
+otlog.txt\n$!\n"); # Open up the file
while (not eof(BOOTLOG)) {
$readline=<BOOTLOG>;
$found=0;
foreach (@aok) {if ($readline =~ m/.*$_.*/) {$found=1}}; # Check aga
+inst each @aok to see if it's valid: if it is, $found.
chomp($readline); # If not, t
+hen print it out if it's not just a newline.
unless ($found) {if ($readline) {print "$readline\n";}};
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|