17 lines
712 B
Markdown
Raw Normal View History

# stdbuf
> एक कमांड को उसके मानक स्ट्रीम के लिए संशोधित बफरिंग ऑपरेशनों के साथ चलाएं।
> अधिक जानकारी: <https://www.gnu.org/software/coreutils/manual/html_node/stdbuf-invocation.html>।
- `stdin` बफर का आकार 512 KiB में बदलें:
`stdbuf {{[-i|--input]}} 512K {{आदेश}}`
- `stdout` बफर को लाइन-बफर्ड में बदलें:
`stdbuf {{[-o|--output]}} L {{आदेश}}`
- `stderr` बफर को अनबफर्ड में बदलें:
`stdbuf {{[-e|--error]}} 0 {{आदेश}}`