> For the complete documentation index, see [llms.txt](https://kashz.gitbook.io/kashz-jewels/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kashz.gitbook.io/kashz-jewels/tricks/.mdb-file.md).

# .mdb file

```bash
# dump table names
mdb-tables FILE

# to format table per line and out to tables
| sed "s/ /\n/g" > tables

# dump data from table
mdb-json FILE TABLE

# script
while read line; do echo "----------------\nDumping table:$line"; mdb-json backup.mdb $line; done < tables
```
