반응형
shuf
-
리눅스 기초 명령어5 (uniq, shuf, cut, awk)리눅스 2021. 1. 16. 17:47
nl b -> 1 one 2 two 3 three 4 three 5 three 6 two 7 two 8 two 라고 할때 1. uniq b b 파일에 중복되어 있는 것들만 찾아준다. uniq b -> one two three two 2. sort를 이용해서 다음과 같이 출력할 수도 있다. sort b | uniq -> one three two 3. uniq -c b | nl -> 1 1 one 2 1 two 3 3 three 4 3 two -c 옵션은 중복되는 문자를 카운트한다. 4. uniq -u b -> one two 중복되지 않는 것들만 출력한다. 5. uniq -d b -> three two 중복된것만 보여준다. 대문자 -D는 중복된 것들을 뿌려준다. 6. uniq k -f -> 1 이순신 90 ..