http://qs1969.pair.com?node_id=937870

sagar123 has asked for the wisdom of the Perl Monks concerning the following question:

I want to print dots ....... just to make user know that job is still running, here is something in perl I am copying, but it prints dots in different lines. Is it possible to over write .... dots so that it dont fill the terminal

while (1) { for (1..20) {print "."; system ("sleep 0.05"); } print "\n"; }