drime

French rhyme dictionary with web and CLI interface
git clone https://a3nm.net/git/drime/
Log | Files | Refs | README

lexique_retrieve.sh (197B)


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