2014-06-23 Marcus asked me how I would count letter frequencies in text. My answer is: Singularize the letters with sed(1) -- that's the im- portant step -- then sort-count-sort as usual: sed 's/./&\n/g' | sort | uniq -c | sort -n http://marmaro.de/lue/ markus schnalke