frhyme

guess the last phonemes of a French word
git clone https://a3nm.net/git/frhyme/
Log | Files | Refs | README

commit 7bc9f54719f37d7df3a551858f4c2a62f39bacd8
parent 1d17770881b97459e48a12046e5b67a65700e388
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Tue, 13 Mar 2012 12:35:04 +0100

add the make script

Diffstat:
make.sh | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/make.sh b/make.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +NUM=$1 +shift + +cat $* | ./truncate.sh $NUM | + rev | awk --field-separator="\t" '{printf "%s\t%s\n", $2, $1}' | + ./buildtrie.py | ./compresstrie.py +