From a9659a3f4c4ca6d1cc4d0c20c3a7d6192e418de3 Mon Sep 17 00:00:00 2001 From: ehouse Date: Wed, 6 Jul 2005 00:58:44 +0000 Subject: [PATCH] ditch words without vowels --- dawg/Danish/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/dawg/Danish/Makefile b/dawg/Danish/Makefile index 298a7b8b6..adc4b0f51 100644 --- a/dawg/Danish/Makefile +++ b/dawg/Danish/Makefile @@ -28,6 +28,7 @@ SOURCEDICT ?= $(XWDICTPATH)/$(LANG)/LarsDanish.dict.gz $(LANG)Main.dict.gz: $(SOURCEDICT) Makefile zcat $< | tr -d '\r' | tr [a-zåæø] [A-ZÅÆØ] | \ + grep '[AEIOUÅÆØ]' | grep '^[A-PR-VX-ZÅÆØ]\+$$' | sort -u | \ gzip -c > $@