Нужен индикатор прогресса для команды Perl System (), используя мод T: R: G

StackOverflow https://stackoverflow.com/questions/6052345

Вопрос

Я хочу индикатор прогресса, который принимает выход Perl

   system('make')
.

А для каждой линии вывода строки в STDOUT из команды make я хочу выводить точку в качестве индикатора прогресса.К сожалению, я использую термин :: readline :: GNU PERL MOD.

Как мне перенаправить stdout, чтобы запечатлеть и подсчитать строки, поскольку работает команда make?

Это было полезно?

Решение

#!/usr/bin/perl

my $command = "make";

open (my $cmd, "$command |");
while(<$cmd>){
  print ".";
}
print "\n";

Другие советы

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";}
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top