pwd, touch, mv, mkdir, rmdir, find, exa, eza, cat: add and update Korean translation (#12905)

* pages.ko/pwd,touch,mv,mkdir,rmdir,find,exa,eza: add pages

* cat: reflect en updates in Korean translation
This commit is contained in:
코드싸이
2024-06-09 21:16:11 +09:00
committed by GitHub
parent 2f7056ec8c
commit 72cd98bac3
9 changed files with 219 additions and 6 deletions

View File

@@ -3,14 +3,22 @@
> 파일 출력 및 연결.
> 더 많은 정보: <https://manned.org/cat.1posix>.
- 표준출력으로 파일 내용 출력:
- 파일 내용`stdout`으로 출력:
`cat {{파일}}`
`cat {{경로/대상/파일}}`
- 여러 파일을 대상 파일 연결:
- 여러 파일을 출력 파일 연결:
`cat {{파일1 파일2 ...}} > {{대상_파일}}`
`cat {{경로/대상/파일1 경로/대상/파일2 ...}} > {{경로/대상/출력_파일}}`
- 대상 파일에 여러 파일 내용 추가:
- 여러 파일을 출력 파일에 추가:
`cat {{파일1 파일2 ...}} >> {{대상_파일}}`
`cat {{경로/대상/파일1 경로/대상/파일2 ...}} >> {{경로/대상/출력_파일}}`
- 버퍼링 없이 파일 내용을 출력 파일로 복사:
`cat -u {{/dev/tty12}} > {{/dev/tty13}}`
- `stdin`을 파일로 쓰기:
`cat - > {{경로/대상/파일}}`