리눅스 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
'IT > Linux' 카테고리의 다른 글
파일의 줄 수, 단어 수, 바이트 수 - 리눅스 wc 명령어 (0) | 2023.03.20 |
---|---|
파일 내용의 시작과 끝 출력 - 리눅스 head, tail 명령어 (0) | 2023.03.20 |
파일의 내용 확인을 편리하게 하기 - 리눅스 less 명령어 (0) | 2023.03.19 |
화면에 파일 내용 출력하기 - 리눅스 cat 명령어 (0) | 2023.03.18 |
history 명령어 (0) | 2023.02.26 |
댓글