Skip to content

Instantly share code, notes, and snippets.

@rkumar
Created December 2, 2012 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rkumar/4189108 to your computer and use it in GitHub Desktop.
Save rkumar/4189108 to your computer and use it in GitHub Desktop.
compute and print total occurrences for words in list
#!/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