I want to print the record count to the command line in DOS I don't want it to roll like each number has a newline in it.
The code is something like this.
open (XMLFILE,"exportB.xml") || die "Can't open export.xml file :$!\n"
+;
while(<XMLFILE>){
$ctr++;
# do something here ...
print $ctr;