https://github.com/tlinden/data-interactive-inspect
Inspect and manipulate perl data structures interactively
https://github.com/tlinden/data-interactive-inspect
Last synced: about 2 months ago
JSON representation
Inspect and manipulate perl data structures interactively
- Host: GitHub
- URL: https://github.com/tlinden/data-interactive-inspect
- Owner: TLINDEN
- License: artistic-2.0
- Created: 2015-02-05T15:10:48.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2017-04-05T21:31:57.000Z (about 9 years ago)
- Last Synced: 2025-01-11T11:41:57.616Z (over 1 year ago)
- Language: Perl
- Homepage: http://search.cpan.org/dist/Data-Interactive-Inspect/
- Size: 28.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changelog
- License: LICENSE
Awesome Lists containing this project
README
NAME
Data::Interactive::Inspect - Inspect and manipulate perl data structures interactively
SYNOPSIS
use Data::Interactive::Inspect;
my $data = foo(); # get a hash ref from somewhere
# new shell object, the simple way
my $shell = Data::Interactive::Inspect->new($data);
# or
my $shell = Data::Interactive::Inspect->new(
struct => $data,
name => 'verkehrswege',
begin => sub { .. },
commit => sub { .. },
rollback => sub { .. },
editor => 'emacs',
more => 'less'
);
$data = $shell->inspect(); # opens a shell and returns modified hash ref on quit
DESCRIPTION
This module provides an interactive shell which can be used to inspect
and modify a perl data structure.
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=Data::Interactive::Inspect
COPYRIGHT
Copyright (c) 2015-2017 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 Data::Interactive::Inspect Version 0.07.