Skip to content

History / beep reads NZE wordlist

Revisions

  • Word list reports with absent terms noted. Also adding Voxforge dict Voxforge looks a bit like a cmudict fork, with schwa's (ax) added.

    Douglas Bagnall committed Jul 31, 2012
  • Redo word-lists with proper handling of duplicate entries The previous version got the markdown wrong if the dictionary had more than one definition, as is often the case. New script: \#!/bin/sh WORDSET=$1 DICT=$2 echo "#" looking up $(basename $WORDSET) in $(basename $DICT) echo 'Generated by `' $0 $@ '`'. while read -r line; do echo echo "## $line" echo for word in $line; do grep -i "^$word[([:space:]]" $DICT | while read -r result; do echo " $result" done done done < $WORDSET

    Douglas Bagnall committed Jul 29, 2012
  • Add some automatically generated NZE word list readings These were created with the following script -- hopefully they are valid markdown: \#!/bin/sh WORDSET=$1 DICT=$2 echo "# looking up $(basename $WORDSET) in $(basename $DICT)" while read -r line; do echo echo "## $line" echo for word in $line; do echo -n " " grep -i "^$word[([:space:]]" $DICT done done < $WORDSET

    Douglas Bagnall committed Jul 29, 2012