반응형
1000 라인씩 자르기
$ split -l 1000 test.txt
중복 문자
$ cat fruits.txt
orange
apple
apple
orange
orange
apple
banana
$ cat fruits.txt | sort | uniq -c
3 apple
1 banana
3 orange
$ cat fruits.txt | sort | uniq -u ## 중복 라인 제외, 비중복 라인만 출력
banana
$ cat fruits.txt | sort | uniq -d ## 중복 라인만 출력, 비중복 라인 제외
apple
orange
반응형
'Linux > CentOS' 카테고리의 다른 글
pdsh (0) | 2020.10.15 |
---|---|
[CentOS]fdupes - CentOS7 중복 파일 찾기 및 제거 (0) | 2020.08.20 |
특정 프로그램 최대 메모리 사용량 구하기 (0) | 2020.03.17 |
How to install Moodle3.3+ on CentOS7.3 Using git (0) | 2017.07.06 |
기존 파일이 있을경우 SKIP (0) | 2017.06.08 |
최근댓글