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

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

@@ -0,0 +1,20 @@
# fmt
> 단락을 결합하고 줄 너비를 문자 수 (기본적으로 75자)로 제한하여 텍스트 파일의 서식을 다시 지정.
> 더 많은 정보: <https://www.gnu.org/software/coreutils/fmt>.
- 파일 재포맷:
`fmt {{경로/대상/파일}}`
- (최대) `n` 문자의 출력 줄을 생성하는 파일 형식을 다시 지정:
`fmt -w {{n}} {{경로/대상/파일}}`
- 주어진 너비보다 짧은 줄을 결합하지 않고, 파일 형식을 다시 지정:
`fmt -s {{경로/대상/파일}}`
- 균일한 간격 (단어 사이에 1칸, 단락 사이에 2칸)으로 파일 형식을 다시 지정:
`fmt -u {{경로/대상/파일}}`