DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Print Words With Frequency < 10
#!/bin/awk -f
{ for(i = 0; i < NF; i++) WORD[$i]++; }
END {
for(word in WORD)
if (WORD[word] < 10)
printf "%3d %s\n", WORD[word], word;
}





