매일 리 눅 스 명령 배우 기 (102): tac
1878 단어 링크 ux 서버 프로그래머 운영 백 엔 드
tac 명령 은 파일 내용 을 상 반 된 순서대로 연결 하고 인쇄 하 는 데 사 용 됩 니 다.
cat 명령 과 마찬가지 로 모든 파일 을 표준 출력 에 연결 하지만 순 서 는 반대로 한 줄 씩 인쇄 하고 마지막 줄 을 먼저 인쇄 합 니 다.이것 은 시간 순 으로 배 열 된 로그 파일 을 검사 하 는 데 유용 합 니 다. (예 를 들 어) 파일 의 마지막 줄 에는 최신 정보 가 포함 되 어 있 습 니 다.
문법 서식
tac [OPTION] ... [FILE] ...
옵션 설명
-b #
-r # (BRE)
-s # STRING
--help #
--version #
예 를 들다
마지막 줄 부터 첫 줄 까지 파일 을 역방향 으로 출력 합 니 다 (cat 와 비교 표시)
[root@centos7 ~]# tac test.txt
This is also also a test line
This is also a test line
This is also a test line
This is a test line
This is a test line
This is a test line
[root@centos7 ~]# cat test.txt
This is a test line
This is a test line
This is a test line
This is also a test line
This is also a test line
This is also also a test line
매일 리 눅 스 명령 배우 기 (98): crontab
매일 리 눅 스 명령 배우 기 (99): nohup
매일 리 눅 스 명령 하나 배우 기 (100): iotop