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
This was done mainly to upload it to Anki.
cd Kindle/system/vocabularysqlite vocab.dbsqlite> .headers on
sqlite> .mode csv
sqlite> .output data.csv
| #!/bin/bash | |
| # | |
| # Export Password Store (aka pass) passwords to a KeePass compatible imports file. | |
| # Note: this does not respect the folder structure (yet). Also, multiline notes are not exported correctly. | |
| # | |
| # Author: Karolis Kazlauskis | |
| # 2017 | |
| entries='' # pass entries found |
| #!/bin/bash | |
| # Inspired by | |
| # https://www.codeenigma.com/community/blog/using-mdbtools-nix-convert-microsoft-access-mysql | |
| # USAGE | |
| # Rename your MDB file to migration-export.mdb | |
| # run ./mdb2sqlite.sh migration-export.mdb | |
| # wait and wait a bit longer... | |
| mdb-schema migration-export.mdb sqlite > schema.sql |
| #!/usr/bin/env bash | |
| # Colours picked from https://robinpowered.com/blog/best-practice-system-for-organizing-and-tagging-github-issues/ | |
| ### | |
| # Label definitions | |
| ### | |
| declare -A LABELS | |
| # Platform |