Skip to content
This repository has been archived by the owner on Apr 12, 2022. It is now read-only.

jstcki/dbf2dsv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dbf2dsv

A command-line program to convert DBF files to DSV.

Installation

npm install dbf2dsv -g

Usage

Specify the target file with -o or --out

dbf2dsv --out=foo.tsv -- foo.dbf

or write to /dev/stdout (default).

dbf2dsv -- foo.dbf > foo.tsv

Specify a custom delimiter with -d or --delimiter (default is \t)

dbf2dsv --out=foo.tsv --delimiter=";" -- foo.dbf

Specify the encoding of the DBF file -e or --encoding (default is ISO-8859-1)

dbf2dsv --out=foo.tsv --encoding=utf8 -- foo.dbf

Author

Jeremy Stucki, Interactive Things

License

BSD, see LICENSE