I tried the code, instead of printing the lines SYSTEM up to the beginning of DATE, it prints an infinite loop "SYSTEM:tipihf6".What's wrong with the code?
#! /usr/bin/perl
print ("Content-type: text/html\n\n");
use CGI qw(:standard);
use strict;
use warnings;
my ($in_filename,$startSearchText, $endSearchText,$inputLine);
$in_filename='j.txt';
if (open(INFILE, "<$in_filename"))
{
$startSearchText="SYSTEM";
$endSearchText="^DATE:";
my @inputLine;
while (<INFILE>)
{
chomp;
$inputLine=$_;
if ($inputLine=~ /$startSearchText/i)
{
do
{
print "$inputLine\n";
<INFILE>;
chomp;
$inputLine=$_;
}
until ($inputLine=~ /$endSearchText/i);
}
}
close(INFILE);
}
"j.txt"
DATE :29-Jan-2008-213243
SYSTEM :tipihf6
HANDLER :CAS 127
DEVICE :DVC5410AGGUR16
PROGRAM :FC5416E2
TEMPP :105
SUPPORT :Agus-10
BOXNUMFRM:FU0663
BOXNUMTO :FU0663
CONTACFRM:C-Y144-0146_0062
CONTACTO :C-Y144-0146_0062
Problem :Opens Fail
Problem Description : OpensFail @ Ck #1 B1
Root Cause : Others
Root Cause Description : depressed
1st SMS : 8063112
ACTIVITY : Interface_Down
: changed depressed & worn out contactor pins
DATE : 30-Jan-2008-213243
SYSTEM : hf6
HANDLER : CAS 127
DEVICE : DVC54
PROGRAM : FC5
TEMPP : 105
SUPPORT : HARRY T.
BOXNUMFRM: FU0663
BOXNUMTO : FU0663
CONTACFRM: C-Y144-0146_0062
CONTACTO : C-Y144-0146_0062
REPDT : 2 hr
Problem : TS detect part
Root Cause : Others
Root Cause Description : wrong orientation (diamond)
1st SMS : 8072460
ACTIVITY : Handler_Down
: Endorsed by allen B., Device was inserted by pusher
: initial check:
desired output:
SYSTEM :tipihf6
HANDLER :CAS 127
DEVICE :DVC5410AGGUR16
PROGRAM :FC5416E2
TEMPP :105
SUPPORT :Agus-10
BOXNUMFRM:FU0663
BOXNUMTO :FU0663
CONTACFRM:C-Y144-0146_0062
CONTACTO :C-Y144-0146_0062
Problem :Opens Fail
Problem Description : OpensFail @ Ck #1 B1
Root Cause : Others
Root Cause Description : depressed
1st SMS : 8063112
ACTIVITY : Interface_Down
: changed depressed & worn out contactor pins
