Created
April 29, 2013 12:03
-
-
Save rosado/5481196 to your computer and use it in GitHub Desktop.
Useful bash functions
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
function histogram () { | |
awk ' NF > 0{ counts[$0] = counts[$0] + 1; } END { for (word in counts) print word, counts[word]; }' | |
} | |
function awk-average () { | |
awk '{ s+=$1 } END { print 's/NR' }' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment