mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-28 03:55:26 +02:00
1.2 KiB
1.2 KiB
pr
파일을 인쇄용으로 페이지화하거나 열로 정렬. 더 많은 정보: https://www.gnu.org/software/coreutils/manual/html_node/pr-invocation.html.
- 기본 헤더와 푸터로 여러 파일 인쇄:
pr {{경로/대상/파일1 경로/대상/파일2 ...}}
- 사용자 지정 가운데 정렬 헤더로 인쇄:
pr {{[-h|--header]}} "{{헤더}}" {{경로/대상/파일1 경로/대상/파일2 ...}}
- 번호가 매겨진 줄과 사용자 지정 날짜 형식으로 인쇄:
pr {{[-n|--number-lines]}} {{[-D|--date-format]}} "{{형식}}" {{경로/대상/파일1 경로/대상/파일2 ...}}
- 모든 파일을 각각 하나의 열에 헤더나 푸터 없이 인쇄:
pr {{[-m|--merge]}} {{[-T|--omit-pagination]}} {{경로/대상/파일1 경로/대상/파일2 ...}}
- 페이지 길이(헤더와 푸터 포함)를 지정하여 페이지 2에서 페이지 5까지 인쇄:
pr +2:5 {{[-l|--length]}} {{페이지_길이}} {{경로/대상/파일1 경로/대상/파일2 ...}}
- 각 줄에 대한 오프셋과 잘리는 사용자 지정 페이지 너비로 인쇄:
pr {{[-o|--indent]}} {{오프셋}} {{[-W|--page_width]}} {{너비}} {{경로/대상/파일1 경로/대상/파일2 ...}}