The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



Thread: Broken Pipe
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #4 (permalink)  
Old 12-09-2007
porter porter is offline
Registered User
 

Join Date: Jan 2007
Posts: 2,965
I don't see anything to worry about.

Broken pipe is the message you get from EPIPE which is the error you get if a write is attempted on a pipe where the read end is closed.

As your pager is the read end and is quitting, it's closing the read end of the pipe. Hence the program writing to the pipe, man in this case, is going get an error when it tries to write to the pipe.

So the error message is coming from man, not pg.
Reply With Quote