This was done mainly to upload it to Anki.
- Mount kindle
 cd Kindle/system/vocabularysqlite vocab.db
sqlite> .headers on
sqlite> .mode csv
sqlite> .output data.csv
sqlite> SELECT word FROM WORDS;
// optionally
sqlite> DELETE from WORDS; 
sqlite> .quit