in reply to Re^2: marking time during function call
in thread marking time during function call
open(my $FH, "cleartool find /vobs/41Rational_Val/. -all -print|") or die "Something went wrong\n"; print STDERR "Reading cleartool command, line "; while (<$FH>) { do_something_here; unless ($. % 200) { # every 200 lines print STDERR "$. "; } }
However, there is no way to know the percent complete progress of the cleartool command.
-QM
--
Quantum Mechanics: The dreams stuff is made of
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: marking time during function call
by lycanhunter (Initiate) on Jun 17, 2015 at 16:42 UTC |