6c3b185f3961edf18b957e1664cbaa6e37df0a54
[multypo.git] / play.sh
1 #!/bin/sh
2
3 # you should probably download a txt dictionary of your favourite language and use that as a words.txt
4
5 WORDSTOPLAY=10
6
7 sort -R dict.txt | egrep '^[A-Za-z]{5,}$' | head -n $WORDSTOPLAY | tr [:upper:] [:lower:]  | qt/multypo
8