2019-11-19 17:12:39 +00:00
|
|
|
# cat
|
|
|
|
|
|
|
|
> 파일 출력 및 연결.
|
2024-05-05 20:02:35 +01:00
|
|
|
> 더 많은 정보: <https://manned.org/cat.1posix>.
|
2019-11-19 17:12:39 +00:00
|
|
|
|
pwd, touch, mv, mkdir, rmdir, find, exa, eza, cat: add and update Korean translation (#12905)
* pages.ko/pwd,touch,mv,mkdir,rmdir,find,exa,eza: add pages
* cat: reflect en updates in Korean translation
2024-06-09 13:16:11 +01:00
|
|
|
- 파일 내용을 `stdout`으로 출력:
|
2019-11-19 17:12:39 +00:00
|
|
|
|
pwd, touch, mv, mkdir, rmdir, find, exa, eza, cat: add and update Korean translation (#12905)
* pages.ko/pwd,touch,mv,mkdir,rmdir,find,exa,eza: add pages
* cat: reflect en updates in Korean translation
2024-06-09 13:16:11 +01:00
|
|
|
`cat {{경로/대상/파일}}`
|
2019-11-19 17:12:39 +00:00
|
|
|
|
pwd, touch, mv, mkdir, rmdir, find, exa, eza, cat: add and update Korean translation (#12905)
* pages.ko/pwd,touch,mv,mkdir,rmdir,find,exa,eza: add pages
* cat: reflect en updates in Korean translation
2024-06-09 13:16:11 +01:00
|
|
|
- 여러 파일을 출력 파일로 연결:
|
2019-11-19 17:12:39 +00:00
|
|
|
|
pwd, touch, mv, mkdir, rmdir, find, exa, eza, cat: add and update Korean translation (#12905)
* pages.ko/pwd,touch,mv,mkdir,rmdir,find,exa,eza: add pages
* cat: reflect en updates in Korean translation
2024-06-09 13:16:11 +01:00
|
|
|
`cat {{경로/대상/파일1 경로/대상/파일2 ...}} > {{경로/대상/출력_파일}}`
|
2019-11-19 17:12:39 +00:00
|
|
|
|
pwd, touch, mv, mkdir, rmdir, find, exa, eza, cat: add and update Korean translation (#12905)
* pages.ko/pwd,touch,mv,mkdir,rmdir,find,exa,eza: add pages
* cat: reflect en updates in Korean translation
2024-06-09 13:16:11 +01:00
|
|
|
- 여러 파일을 출력 파일에 추가:
|
2019-11-19 17:12:39 +00:00
|
|
|
|
pwd, touch, mv, mkdir, rmdir, find, exa, eza, cat: add and update Korean translation (#12905)
* pages.ko/pwd,touch,mv,mkdir,rmdir,find,exa,eza: add pages
* cat: reflect en updates in Korean translation
2024-06-09 13:16:11 +01:00
|
|
|
`cat {{경로/대상/파일1 경로/대상/파일2 ...}} >> {{경로/대상/출력_파일}}`
|
|
|
|
|
|
|
|
- 버퍼링 없이 파일 내용을 출력 파일로 복사:
|
|
|
|
|
|
|
|
`cat -u {{/dev/tty12}} > {{/dev/tty13}}`
|
|
|
|
|
|
|
|
- `stdin`을 파일로 쓰기:
|
|
|
|
|
|
|
|
`cat - > {{경로/대상/파일}}`
|