mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-03 19:15:37 +02:00
stdbuf: add Hindi translation (#14749)
This commit is contained in:
parent
17b760ae0e
commit
6f8457eac5
1 changed files with 16 additions and 0 deletions
16
pages.hi/common/stdbuf.md
Normal file
16
pages.hi/common/stdbuf.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# stdbuf
|
||||
|
||||
> एक कमांड को उसके मानक स्ट्रीम के लिए संशोधित बफरिंग ऑपरेशनों के साथ चलाएं।
|
||||
> अधिक जानकारी: <https://www.gnu.org/software/coreutils/stdbuf>।
|
||||
|
||||
- `stdin` बफर का आकार 512 KiB में बदलें:
|
||||
|
||||
`stdbuf --input=512K {{आदेश}}`
|
||||
|
||||
- `stdout` बफर को लाइन-बफर्ड में बदलें:
|
||||
|
||||
`stdbuf --output=L {{आदेश}}`
|
||||
|
||||
- `stderr` बफर को अनबफर्ड में बदलें:
|
||||
|
||||
`stdbuf --error=0 {{आदेश}}`
|
Loading…
Add table
Reference in a new issue