From 795f1540b4213c8ce7928cf42ba551ad9b879083 Mon Sep 17 00:00:00 2001 From: Cameron Blankenbuehler Date: Tue, 6 Sep 2022 15:34:01 -0400 Subject: [PATCH] Generate '_' words file for 6x6 board --- split_wordlist_alpha.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/split_wordlist_alpha.sh b/split_wordlist_alpha.sh index 10ea90d..eb9a580 100755 --- a/split_wordlist_alpha.sh +++ b/split_wordlist_alpha.sh @@ -30,5 +30,6 @@ else grep -P "^x" $1 > "$2/words_x.txt" grep -P "^y" $1 > "$2/words_y.txt" grep -P "^z" $1 > "$2/words_z.txt" + grep -P "^_" $1 > "$2/words__.txt" exit 0 fi