- or download this
/^Request Number:/
/^Status:/
/^Affected User:/
...
/\d+\s+minutes\s+\d+\s+seconds/ # (update: had forgotten 3rd "\s+")
- or download this
my %record;
if ( /^Request Number:/ ) {
...
}
}
# and likewise for each other type of line
- or download this
$/ = "end-of-record-string"; # whatever that may be
...
}
store_to_database( \%record );
}