http://www.perlmonks.org?node_id=1002773


in reply to Parsing problem

It means that you are trying to print $count and $changed, but the contents of those scalars are undefined. This is because they get values in the 1st elsif, but are printed out in the second elsif. I think you need to figure out where you want to actually have the print statement.