I want a progress indicator that takes the output of a Perl

   system('make')

and for each line output to STDOUT from the make command, I want to output a dot as a progress indicator. Unfortunately, I'm using the Term::ReadLine::Gnu Perl mod.

How do I redirect STDOUT to capture and count the lines as the make command is running?

link|improve this question

You may also find Term::ProgressBar of use. – Ether May 19 '11 at 0:37
feedback

2 Answers

up vote 7 down vote accepted
#!/usr/bin/perl

my $command = "make";

open (my $cmd, "$command |");
while(<$cmd>){
  print ".";
}
print "\n";
link|improve this answer
3  
I recommend using a three-arg open for this: open my $cmd, '-|', $command or die $!; This is safer and more efficient. – friedo May 19 '11 at 1:03
good advice, I use the three-arg version exclusively for files, why not pipes as well? Also, this might be a case where using print over die may have its advantages. – wespiserA May 19 '11 at 1:11
3  
You'll want to autoflush STDOUT otherwise it'll wait for a whole line of dots before printing. use IO::Handle; STDOUT->autoflush(1) – Schwern May 19 '11 at 6:20
How do I get the return code from $command? $? – bitbucket May 19 '11 at 17:00
yeah, add $outStatus=$?; inside the while loop, then after the loop add a line like print "$command was SUCCESSFUL\n" if ($outStatus ~~ 0); – wespiserA May 19 '11 at 20:28
feedback
make >& >(while read f; do echo -n .; done; echo)

Obviously this is a shell solution, but a dot as a progress indicator is a dot.

You could of course stick a tee in there to save a copy of the make to file in case of problems.

Since you didn't seem to like (neither upvoted or accepted) the shell solution for some unexplained reason, here is a pure perl one:

if (open(X,"make|")) { local($|)=1; while(<X>) { print "."; } close(X); print "\n";}
link|improve this answer
I hadn't thought of making the shell do the heavy lifting... interesting. – bitbucket May 19 '11 at 0:08
@bitbucket: Added a pure perl option to the previous shell answer. – Seth Robertson May 19 '11 at 0:25
I had to get some sleep... I'm testing the solutions today. – bitbucket May 19 '11 at 16:10
upvoted – bitbucket May 25 '11 at 21:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.