gdbm_load
extensible hashing
Install
- All systems
-
curl cmd.cat/gdbm_load.sh
- Debian
-
apt-get install gdbmtool
- Ubuntu
-
apt-get install gdbmtool
- Alpine
-
apk add gdbm
- Arch Linux
-
pacman -S gdbm
- Kali Linux
-
apt-get install gdbmtool
- CentOS
-
yum install gdbm
- Fedora
-
dnf install gdbm-1
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install gdbmtool
- OS X
-
brew install gdbm
- Dockerfile
- dockerfile.run/gdbm_load
- Docker
-
docker run cmd.cat/gdbm_load gdbm_load
powered by Commando
gdbm-1
extensible hashing
gdbm
Gdbm is a GNU database indexing library, including routines which
use extensible hashing. Gdbm works in a similar way to standard UNIX dbm routines. Gdbm is useful for developers who write C applications and need access to a simple and efficient database or who are building C applications which will use such a database. If you're a C developer and your programs need access to simple database routines, you should install gdbm. You'll also need to install gdbm-devel.
gdbmtool
GNU dbm database routines (command line tools)
GNU dbm ('gdbm') is a library of database functions that use extendible hashing and works similarly to the standard UNIX 'dbm' functions. The basic use of 'gdbm' is to store key/data pairs in a data file, thus providing a persistent version of the 'dictionary' Abstract Data Type ('hash' to perl programmers). This package includes following command line tools: * gdbm_dump -- dump database content into system-independant format * gdbm_load -- recreate database from dump, created by gdbm_dump * gdbmtool -- view and modify an existing database or to create a new one.