Skip to content

Instantly share code, notes, and snippets.

@ajmcmiddlin
Created July 16, 2015 23:43
Show Gist options
  • Save ajmcmiddlin/addef229975cf6676ce2 to your computer and use it in GitHub Desktop.
Save ajmcmiddlin/addef229975cf6676ce2 to your computer and use it in GitHub Desktop.
Dump Access database to CSVs with mdbtools
#!/usr/bin/env bash
db="$1"
out_dir="$2"
tables="$(mdb-tables -1 "$db")"
echo "$tables" | while read t; do
mdb-export "$db" "$t" > "${out_dir}/${t}.csv"
done
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment