ditch words without vowels

This commit is contained in:
ehouse 2005-07-06 00:58:44 +00:00
parent 9d4bc009c0
commit a9659a3f4c

View file

@ -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 > $@