docs/bib-ref2

view stuff/wordfreq @ 61:0f2510fa7d98

Some more minor cleanups in the text. Already done on 2014-11-05 and thus part of the PB publication.
author markus schnalke <meillo@marmaro.de>
date Fri, 21 Nov 2014 08:50:55 +0100
parents
children
line source
1 #!/bin/sh
2 #
3 # print word frequency
5 deroff "$@" |
6 tr -c 'A-Za-zÄÖÜäöüß-' '\n' | tr A-ZÄÖÜ a-zäöü |
7 sed '/^ *$/d'| sort |uniq -c | awk '
8 {sum+=$1; a[$2]=$1;}
9 END {for (x in a) {printf("%s\t%.2f\t%4d\n", x, a[x]/sum, a[x])} }
10 '| sort -nr -k 3