Okay, so what I\'m trying to do is print out a percentage complete to my command line, now, I would like this to simply \'update\' the number shown on the screen. So somehow
In C and C++, the trick is to print char #13. Maybe it can work in Perl.
for (int pc = 0 ; pc <= 100 ; ++pc) printf("Percentage: %02d %% %c", pc, 13); printf("\n");