Skip to content

Instantly share code, notes, and snippets.

@iziang
Last active August 29, 2015 14:01
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 iziang/a8aec19f76b78053c499 to your computer and use it in GitHub Desktop.
Save iziang/a8aec19f76b78053c499 to your computer and use it in GitHub Desktop.
找出以哪个英文字母开头的单词最多
awk -vFS="" '{a[$1]++}END{for (i in a) if(match(i,/[a-z]/)) {b[i]=a[i]+a[toupper(i)];print i","b[i]}}' /usr/share/dict/words|sort -t "," -nrk 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment