1
You will use the following command:
sort SeuArquivo | uniq -c
If you still want to sort by the number of occurrences use:
sort SeuArquivo | uniq -c | sort -nr
1
2
You will use the following command:
sort SeuArquivo | uniq -c
If you still want to sort by the number of occurrences use:
sort SeuArquivo | uniq -c | sort -nr
Browser other questions tagged linux bash shell shell-script log
You are not signed in. Login or sign up in order to post.
+1 eventually
... | awk '$1 > 10 {print $2}
– JJoao