2021-11-09
uniq -c
で文字の重複をカウントできることを知った。
code:unixcexample.sh
❯ echo "A
B
B
C
D
D
D" | uniq -c
1 A
2 B
1 C
3 D