3 # you should probably download a txt dictionary of your favourite language and use that as a words.txt
5 cd "$(readlink -e $(dirname "$0"))"
9 if [[ -z "$WORDSFILE" ]]; then
13 export LC_ALL=C # dont do unicode stuff in egrep
15 sort -R "$WORDSFILE" | sed 's/\/.*//' | egrep '^[A-Za-z]{5,}$' | head -n "$WORDSTOPLAY" | tr [:upper:] [:lower:] | qt/multypo
16 echo "Press Ctrl-C to quit"