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/cat.md
코드싸이 19c6841a9d
cryptsetup-luksformat: fix typo, linux/c*: add and update Korean translation (#14682)
* linux/c*: add and update Korean translation

* cryptsetup-luksformat: fix typo
2024-11-08 15:55:00 +09:00

28 lines
764 B
Markdown

# cat
> [f]파일을 출력하고 연결.
> 더 많은 정보: <https://www.gnu.org/software/coreutils/cat>.
- [f]파일의 내용을 `stdout`에 출력:
`cat {{경로/대상/파일}}`
- 여러 [f]파일을 연결하여 출력 [f]파일로 저장:
`cat {{경로/대상/파일1 경로/대상/파일2 ...}} > {{경로/대상/출력_파일}}`
- 여러 [f]파일을 출력 [f]파일에 추가:
`cat {{경로/대상/파일1 경로/대상/파일2 ...}} >> {{경로/대상/출력_파일}}`
- `stdin`을 [f]파일로 작성:
`cat - > {{경로/대상/파일}}`
- 모든 출력 줄에 [n]번호 추가:
`cat -n {{경로/대상/파일}}`
- 비인쇄 및 공백 문자를 표시 (비ASCII의 경우 `M-` 접두사 사용):
`cat -v -t -e {{경로/대상/파일}}`