mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: Juri Dispan <juri.dispan@posteo.net> Co-authored-by: Isaac Vicente <isaacvicentsocial@gmail.com>
382 B
382 B
cat
파일 출력 및 연결. 더 많은 정보: https://www.gnu.org/software/coreutils/cat.
- 표준출력으로 파일 내용 출력:
cat {{파일명}}
- 여러 파일을 대상 파일에 연결:
cat {{파일명1 파일명2 ...}} > {{대상_파일명}}
- 대상 파일에 여러 파일 내용 추가:
cat {{파일명1 파일명2 ...}} >> {{대상_파일명}}