1MAKEBDB(1) General Commands Manual MAKEBDB(1)
2
3
4
6 makebdb - Make a BerkeleyDB database from stdin
7
9 makebdb [options] bdbname
10
12 makebdb allows a BerkeleyDB database to be formed from input read from
13 stdin. bdbname is the name of the BerkeleyDB database to create,
14 ususally the name of this file will end in .db. If the file already
15 exists is will be overwritten. The format of the input is key, value
16 pairs separated by a colon (:).
17
18 Example:
19
20 this is a key:this is a value
21
23 -h, --help:
24 Print usage information.
25
26 -u, --undo:
27 Print content of database file, one entry a line.
28
30 The full documentation for BerkeleyDB is available on the Sleepycat
31 Software web site (http://www.sleepycat.com)
32
34 Original GDBM code by Horms <horms@verge.net.au>. Modified for Berkeā
35 leyDB by Chris Stratford <chriss@pipex.net>.
36
37
38
39 30th May 2002 MAKEBDB(1)