1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/linux/fold.md
K.B.Dharun Krishna 898f711019
pages/*: update GNU coreutils links, sync translation pages (#15543)
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2025-01-18 18:45:33 +05:30

16 lines
534 B
Markdown

# fold
> 고정 폭 출력 장치를 위한 긴 줄을 접습니다.
> 더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/fold-invocation.html>.
- 고정 폭으로 줄을 접기:
`fold --width {{폭}} {{경로/대상/파일}}`
- 바이트 단위로 폭 계산 (기본값은 열 단위로 계산):
`fold --bytes --width {{바이트_단위_폭}} {{경로/대상/파일}}`
- 폭 제한 내에서 가장 오른쪽 공백 뒤에서 줄을 나누기:
`fold --spaces --width {{폭}} {{경로/대상/파일}}`