Created
October 30, 2023 15:26
-
-
Save yfarjoun/94aa4d4c352af0000349e5e10f3b3aba to your computer and use it in GitHub Desktop.
bash `table`
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# instead of doing sort | uniq -c this will count with little overhead the various lines that you sent at it | |
awk '{table[$0]+=1} END {for (entry in table) {print entry, table[entry]}}' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment