# 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
Last updated 3 years ago