본문 바로가기
IT/Linux

파일 내용을 역순으로 출력 - 리눅스 tac 명령어

by 뉴코딩맨 2023. 3. 20.
리눅스 tac 명령어는 cat 명령어와는 반대로 파일 내용을 역순으로 출력해서 볼 수 있습니다. 이전에 사용했던 명령어를 보고 싶을 때 history 명령어를 사용하는 데 사용했던 명령어가 많아서 스크롤을 해야 되는 경우 tac 명령어를 통해서 해결할 수 있습니다.
 

사용법

 

tac <filename>

 

user@user-virtual-machine:~$ cat color.txt
red
blue
yellow

user@user-virtual-machine:~$ cat number.txt
one
two
three

user@user-virtual-machine:~$ tac color.txt
yellow
blue
red

user@user-virtual-machine:~$ tac number.txt
three
two
one

user@user-virtual-machine:~$ tac color.txt number.txt
yellow
blue
red
three
two
one
 
user@user-virtual-machine:~$ tac .bash_history

 

댓글