#!/bin/sh
#
# print frequency of words

deroff "$@" | tr -cs A-Za-z '\012' | tr A-Z a-z |
	sort | uniq -c | sort -nr | sed 20q
