fmt, fnm, fo*: add Korean translation (#14272)

This commit is contained in:
HoJeong Im
2024-10-21 01:02:34 +09:00
committed by GitHub
parent e01f88e9e9
commit 82ce7f344f
12 changed files with 232 additions and 0 deletions

16
pages.ko/common/fold.md Normal file
View File

@@ -0,0 +1,16 @@
# fold
> 지정된 너비에 맞게 입력 파일의 각 줄을 감싸고 `stdout`으로 출력.
> 더 많은 정보: <https://manned.org/fold.1p>.
- 각 줄을 기본 너비로 변경 (80 자):
`fold {{경로/대상/파일}}`
- 각 줄을 너비 "30"으로 줄 바꿈:
`fold -w30 {{경로/대상/파일}}`
- 각 줄을 너비 "5"로 묶고 공백에서 줄을 (공백으로 구분된 각 단어를, 새 줄에 넣고, 5보다 큰 단어는 줄바꿈됨):
`fold -w5 -s {{경로/대상/파일}}`