stdbuf コマンドのマニュアルページには、ラインバッファリングモードが標準入力バッファリングオプションとして機能しないことが示されています。その理由は何ですか?
tail -f access.log | stdbuf -iL cut -d' ' -f1 | uniq
stdbuf: line buffering stdin is meaningless
Try `stdbuf --help' for more information.
ベストアンサー1
stdbufの作成者として、「stdio入力バッファリングの問題」セクションに案内します。http://www.pixelbeat.org/programming/stdio_buffering/