1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.hi/common/stdbuf.md
2024-11-09 12:29:28 -08:00

652 B

stdbuf

एक कमांड को उसके मानक स्ट्रीम के लिए संशोधित बफरिंग ऑपरेशनों के साथ चलाएं। अधिक जानकारी: https://www.gnu.org/software/coreutils/stdbuf

  • stdin बफर का आकार 512 KiB में बदलें:

stdbuf --input=512K {{आदेश}}

  • stdout बफर को लाइन-बफर्ड में बदलें:

stdbuf --output=L {{आदेश}}

  • stderr बफर को अनबफर्ड में बदलें:

stdbuf --error=0 {{आदेश}}