본문 바로가기
IT/Linux

화면에 파일 내용 출력하기 - 리눅스 cat 명령어

by 뉴코딩맨 2023. 3. 18.
리눅스 cat 명령어는 화면에 파일의 내용을 출력해 주는 명령어입니다. 파일을 하나만 입력하면 하나만 출력해 주고 2개 이상의 파일을 입력하면 파일의 내용들을 결합해서 보여줍니다.

 

사용법

 

cat <filename>

 

ser@user-virtual-machine:~$ touch hello.txt
user@user-virtual-machine:~$ echo hello > hello.txt
user@user-virtual-machine:~$ cat hello.txt
hello

user@user-virtual-machine:~$ touch world.txt
ser@user-virtual-machine:~$ echo world > world.txt
user@user-virtual-machine:~$ cat world.txt
world

user@user-virtual-machine:~$ cat hello.txt world.txt
hello
world

 

'IT > Linux' 카테고리의 다른 글

파일 내용을 역순으로 출력 - 리눅스 tac 명령어  (0) 2023.03.20
파일의 내용 확인을 편리하게 하기 - 리눅스 less 명령어  (0) 2023.03.19
history 명령어  (0) 2023.02.26
cp 명령어  (0) 2023.02.25
mv 명령어  (0) 2023.02.24

댓글