https://github.com/tlinden/dbmdeep
manage DBM::Deep databases via command line
https://github.com/tlinden/dbmdeep
Last synced: about 2 months ago
JSON representation
manage DBM::Deep databases via command line
- Host: GitHub
- URL: https://github.com/tlinden/dbmdeep
- Owner: TLINDEN
- License: apache-2.0
- Created: 2015-02-05T15:13:20.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-10-27T10:00:11.000Z (over 10 years ago)
- Last Synced: 2025-02-28T22:29:57.656Z (over 1 year ago)
- Language: Perl
- Homepage: http://search.cpan.org/dist/DBM-Deep-Manager/
- Size: 156 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changelog
- License: LICENSE
Awesome Lists containing this project
README
NAME
dbmdeep - manage DBM::Deep databases via command line
SYNOPSIS
Usage: dbmdeep [-ceiVhv] []
Manage a DBM::Deep database. Options:
--config= | -c yaml config containing connect params
--export= | -e export db to
--import= | -i import db from
--verbose | -V enable debug output
--help | -h this help message
--version | -v print program version
If - is specified as , STDIN or STDOUT is used respectively.
Interactive commands can be piped into dbmdeep as well, e.g.:
echo "drop users" | dbmdeep my.db.
DESCRIPTION
dbmdeep is a command line utility which can be used to maintain
DBM::Deep databases. It is possible to view, modify or delete contents
of the database and you can export to a YAML file or import from one.
The utility presents an interactive prompt where you enter commands to
maintain the database, see section INTERACTIVE COMMANDS for more
details. Commands can also be piped into the tool via STDIN. Example:
dbmdeep my.db
my.db> show
is the same as:
echo "show" | dbmdeep my.db
INSTALLATION
to install, type:
perl Makefile.PL
make
make test
make install
to read the complete documentation, type:
perldoc Data::Interactive::Inspect
AUTHOR
T.v.Dein
BUGS
Report bugs to
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=DBM::Deep::Manager
SEE ALSO
DBM::Deep
COPYRIGHT
Copyright (c) 2015 by T.v.Dein . All rights reserved.
LICENSE
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
VERSION
This is the manual page for dbmdeep Version 0.01.