Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tlinden/dbmdeep
manage DBM::Deep databases via command line
https://github.com/tlinden/dbmdeep
Last synced: 4 days 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 (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-27T10:00:11.000Z (about 9 years ago)
- Last Synced: 2023-03-22T03:11:18.494Z (almost 2 years ago)
- Language: Perl
- Homepage: http://search.cpan.org/dist/DBM-Deep-Manager/
- Size: 156 KB
- Stars: 0
- Watchers: 2
- 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 lineSYNOPSIS
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> showis the same as:
echo "show" | dbmdeep my.db
INSTALLATION
to install, type:
perl Makefile.PL
make
make test
make installto read the complete documentation, type:
perldoc Data::Interactive::InspectAUTHOR
T.v.DeinBUGS
Report bugs to
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=DBM::Deep::ManagerSEE ALSO
DBM::DeepCOPYRIGHT
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.