add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/common/mkfifo.md Normal file
View File

@@ -0,0 +1,20 @@
# mkfifo
> 创建 FIFO命名管道
> 更多信息:<https://www.gnu.org/software/coreutils/mkfifo>。
- 在给定路径创建一个命名管道:
`mkfifo {{path/to/pipe}}`
- 通过命名管道发送数据并将命令发送到后台:
`echo "{{Hello World}}" > {{path/to/pipe}} &`
- 通过命名管道接收数据:
`cat {{path/to/pipe}}`
- 实时共享你的终端会话:
`mkfifo {{path/to/pipe}}; script -f {{path/to/pipe}}`