GDBMTOOL(1) | GDBM User Reference | GDBMTOOL(1) |
gdbmtool - examine and modify a GDBM database
gdbmtool [-lmNnqrs] [-b SIZE] [-c SIZE] [-f FILE] [--block-size=SIZE] [--cache-size=SIZE] [--file FILE] [--newdb] [--no-lock] [--no-mmap] [--norc] [--quiet] [--read-only] [--synchronize] [DBFILE] [COMMAND [; COMMAND...]]
gdbmtool [-Vh] [--help] [--usage] [--version]
The gdbmtool utility allows you to view and modify an existing GDBM database or to create a new one.
The DBFILE argument supplies the name of the database to open. If not supplied, the default name junk.gdbm is used instead. If the named database does not exist, it will be created. An existing database can be cleared (i.e. all records removed from it) using the --newdb option (see below).
Unless the -N (--norc) option is given, after startup gdbmtool looks for file named .gdbmtoolrc first in the current working directory, and, if not found there, in the home directory of the user who started the program. If found, this file is read and interpreted as a list of gdbmtool commands.
Then gdbmtool starts a loop, in which it reads commands from the standard input, executes them and prints the results on the standard output. If the standard input is attached to a console, the program runs in interactive mode.
The program terminates when the quit command is given, or end-of-file is detected on its standard input.
Commands can also be specified in the command line, after the DBFILE argument. In this case, they will be interpreted without attempting to read more commands from the standard input.
If several commands are supplied, they must be separated by semicolons (properly escaped or quoted, in order to prevent them from being interpreted by the shell).
A gdbmtool command consists of a command verb, optionally followed by one or more arguments, separated by any amount of white space. A command verb can be entered either in full or in an abbreviated form, as long as that abbreviation does not match any other verb.
Any sequence of non-whitespace characters appearing after the command verb forms an argument. If the argument contains whitespace or unprintable characters it must be enclosed in double quotes. Within double quotes the usual escape sequences are understood, as shown in the table below:
Escape Expansion \a Audible bell character (ASCII 7) \b Backspace character (ASCII 8) \f Form-feed character (ASCII 12) \n Newline character (ASCII 10) \r Carriage return character (ASCII 13) \t Horizontal tabulation character (ASCII 9) \v Vertical tabulation character (ASCII 11) \\ Single slash
In addition, a backslash immediately followed by the end-of-line character effectively removes that character, allowing to split long arguments over several input lines.
This command will not overwrite an existing file, unless the truncate parameter is also given. Another optional parameter determines the type of the dump (*note Flat files::). By default, ASCII dump will be created.
This command takes additional information from the variables open, lock, mmap, and sync. See the section VARIABLES, for a detailed description of these.
The define statement provides a mechanism for defining key or content structures. It is similar to the C struct declaration:
define key|content { defnlist }
The defnlist is a comma-separated list of member declarations. Within defnlist the newline character looses its special meaning as the command terminator, so each declaration can appear on a separate line and arbitrary number of comments can be inserted to document the definition.
Each declaration has one of the following formats
type name type name [N]
where type is a data type and name is the member name. The second format defines the member name as an array of N elements of type.
The supported types are:
type meaning char single byte (signed) short signed short integer ushort unsigned short integer int signed integer unsigned unsigned integer uint ditto long signed long integer ulong unsigned long integer llong signed long long integer ullong unsigned long long integer float a floating point number double double-precision floating point number string array of characters (see the NOTE below) stringz null-terminated string of characters
The following alignment declarations can be used within defnlist:
For example:
define content {
int status,
pad 8,
char id[3],
stringz name }
To define data consisting of a single data member, the following simplified construct can be used:
define key|content type
where type is one of the types discussed above.
NOTE: The string type can reasonably be used only if it is the last or the only member of the data structure. That's because it provides no information about the number of elements in the array, so it is interpreted to contain all bytes up to the end of the datum.
Sequence Expansion %f name of the db file %p program name %P package name (gdbm) %_ horizontal space (ASCII 32) %v program version %% %
The default prompt is %p>%_.
The default value is %_>%_.
Default is , (a comma). This variable cannot be unset.
Default is , (a comma). This variable cannot be unset.
The default value is inherited from the environment variable PAGER. Unsetting this variable disables paging.
The following variables control how the database is opened:
Report bugs to <bug-gdbm@gnu.org>.
Copyright © 2013-2021 Free Software Foundation, Inc
License GPLv3+: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it. There is NO
WARRANTY, to the extent permitted by law.
August 1, 2021 | GDBM |