add new chinese translations
This commit is contained in:
16
pages.zh/common/stdbuf.md
Normal file
16
pages.zh/common/stdbuf.md
Normal file
@@ -0,0 +1,16 @@
|
||||
# stdbuf
|
||||
|
||||
> 使用修改的标准流缓冲操作运行命令。
|
||||
> 更多信息:<https://www.gnu.org/software/coreutils/stdbuf>。
|
||||
|
||||
- 将 `stdin` 缓冲区大小更改为 512 KiB:
|
||||
|
||||
`stdbuf --input=512K {{command}}`
|
||||
|
||||
- 将 `stdout` 缓冲区更改为行缓冲:
|
||||
|
||||
`stdbuf --output=L {{command}}`
|
||||
|
||||
- 将 `stderr` 缓冲区更改为无缓冲:
|
||||
|
||||
`stdbuf --error=0 {{command}}`
|
Reference in New Issue
Block a user