Frank Vielma's Blog Programming, science, engineering, and more…
How to convert DBF to CSV (ubuntu, debian)
Posted on {03-May-2011} No commentsThere is a perl tool (dbf_dump) that allows to convert dbf files (dBase) to csv (comma-separated values). To install it, we must to install libdbd-xbase-perl:
sudo aptitude install libdbd-xbase-perl
Example:
dbf_dump --fs="," file.dbf > file.csv
Leave a reply

