`dupdata` is a tool for generating an input file for several RDBMS load utilities.

How to build
============

- Linux
```
$ cd dupdata
$ make
```

How to use
==========
For example, you create an input file for PostgreSQL's COPY command and
an input file has 10000 records. Please execute the following.
```
$ ./dupdata -r 10000 < template/record.in.pgsql
```

Then, you can get an input file named `data.csv`.
