frhyme

guess the last phonemes of a French word (local mirror of https://gitlab.com/a3nm/frhyme)
git clone https://a3nm.net/git/frhyme/
Log | Files | Refs | README | LICENSE

lexique_retrieve.sh (220B)


      1 #!/bin/bash
      2 
      3 ZIP="Lexique382.zip"
      4 URL="http://www.lexique.org/databases/Lexique382/$ZIP"
      5 FILE="Lexique382.tsv"
      6 
      7 cd "$( dirname "$0" )"
      8 
      9 wget $URL
     10 unzip -qq $ZIP $FILE
     11 cat $FILE | ./lexique_fix.sh | ./lexique_prepare.sh
     12