uniq
는 입력 내용에서 중복된 항목을 제거하는 command line utility 이다.
보통 sort
명령어로 정렬을 한 결과를 파이프로 uniq
에 전달해서 중복 내용을 제거한다
$ input.txt | sort -c
# options
-u : 중복되지 않는 라인만 표시
-d : 중복되는 라인만 표시
-c : 중복 횟수를 계산해서 표시( 출현 빈도에 따라서 오름차순 정렬 )
-i (--ignore-case): 대소문자 구분하지 않음
[linux uniq] https://www.lesstif.com/lpt/linux-uniq-95879394.html