X-Git-Url: https://git.ralfj.de/multypo.git/blobdiff_plain/92b261fa3486e341f2bbec499662a726e6376913..318e322c3cd72e6a7f692c6f7c7770c0e15720c8:/play.sh diff --git a/play.sh b/play.sh index 5ee9b2d..128a25d 100755 --- a/play.sh +++ b/play.sh @@ -1,8 +1,19 @@ -#!/bin/sh +#!/bin/bash # you should probably download a txt dictionary of your favourite language and use that as a words.txt +cd "$(readlink -e $(dirname "$0"))" + WORDSTOPLAY=10 +WORDSFILE="$1" +if [[ -z "$WORDSFILE" ]]; then + WORDSFILE="words.txt" +fi -sort -R words.txt | fgrep -v \" | head -n $WORDSTOPLAY | ./game +export LC_ALL=C # dont do unicode stuff in egrep +while true; do + sort -R "$WORDSFILE" | sed 's/\/.*//' | egrep '^[A-Za-z]{5,}$' | head -n "$WORDSTOPLAY" | tr [:upper:] [:lower:] | qt/multypo + echo "Press Ctrl-C to quit" + sleep 3 +done