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

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


Hi..

This is my code
open (FILE,"file.txt"); while (my $data = <FILE>) { chomp($data); print ("$data\n"); } close(FILE);

I am plan to read every 10 line of the data and sleep 60 second before next looping. How could i do that ?. Could somebody help me ?

Thank you,

baharin