I need to redirect the output of pv command to a file so i get read it's progress from another process. Or is it any other way i could do that?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

The progress info goes to standard error so have you tried a | pv ... -f 2> /tmp/out | b? Otherwise an adaptation of the more complicated example from the man page may be used:

( a | pv ... -f | b ) > /tmp/out 2>&1

Stdio buffering may present a problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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