Created
December 2, 2012 14:43
-
-
Save rkumar/4189108 to your computer and use it in GitHub Desktop.
compute and print total occurrences for words in list
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
#!/bin/bash | |
# compute and print total occurrences for words in list | |
# e.g. dependincies or uses in brew | |
awk '{a[$1] ++} END{for (i in a) printf " %s: %2d \n",i, a[i]}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment