I had the impression sed wasn't blocking, because when I do say:
iostat | sed
sed processes the data as it arrives, but when I do
iostat | sed | netcat
Then sed blocks netcat.
Am I right?
|
|
|
|
|
|
|
sed will work in buffered mode when it doesn't print to a terminal. This means that it will try to fill its internal buffer before doing any processing and output by default. This is done to increase throughput, because normally in a pipe you don't care about the timing, but want as much data processed in a given time as possible. Passing |
||
|
|
|
|
I don't know if I understand the question right, but in your example, it should be like this:
Other than that, sed shouldn't need to read all its input to produce output. Do you observe any delays that cannot be explained by this and some small buffering? |
||
|
|
|
|
In addition to what @saua says, |
||
|
|