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
코드싸이 6acaad1270
linux/f*: add Korean translation (#14703)
* linux/f*: add Korean translation

* finch: fix Korean tranlsation

* Update pages.ko/linux/fprintd-verify.md

Co-authored-by: Chooooo <contact@choo.ooo>

---------

Co-authored-by: Chooooo <contact@choo.ooo>
2024-11-09 13:26:42 +09:00

16 lines
501 B
Markdown

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