open(MR, "<path_to_report");
$rid;
The file might be very big in size. It has a unique line inside it in the following format
Root identifier: <some number>
for example
Root identifier: 12987
I need to extract 12987
to $rid
.
How can I do that in Perl?