mpv: fix typo, common/m*: add and update Korean translation (#14664)

* common/m*: add and update Korean translation

* mpv: fix typo
This commit is contained in:
코드싸이
2024-11-07 09:27:03 +09:00
committed by GitHub
parent cf45a79e8d
commit feb91d75ea
122 changed files with 2819 additions and 17 deletions

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

@@ -0,0 +1,20 @@
# mkfifo
> FIFO(이름 있는 파이프) 생성.
> 더 많은 정보: <https://www.gnu.org/software/coreutils/mkfifo>.
- 지정된 경로에 이름 있는 파이프 생성:
`mkfifo {{경로/대상/파이프}}`
- 이름 있는 파이프를 통해 데이터를 보내고 명령을 백그라운드로 전송:
`echo {{"Hello World"}} > {{경로/대상/파이프}} &`
- 이름 있는 파이프를 통해 데이터 수신:
`cat {{경로/대상/파이프}}`
- 터미널 세션을 실시간으로 공유:
`mkfifo {{경로/대상/파이프}}; script -f {{경로/대상/파이프}}`