When I run mdb-export, the program dumps the comma delimited table to the terminal, but does not create a csv file as far as I can tell.
Is mdb-export creating a csv file somewhere or is this dump its intended function? If the latter is the case, how would one go about getting the output into a csv file?
mdb-tables database.mdb | xargs -n1 -I{} bash -c 'mdb-export database.mdb "$1" >"$1".csv' -- {}
– Teapot