NAME

Devel::Command - Perl extension to automatically load and register debugger command extensions

SYNOPSIS

# in .perldb:
use Devel::Command;
sub afterinit {
   Devel::Command->install;
}

DESCRIPTION

Devel::Command provides a simple means to extend the Perl debugger with custom commands. It uses Module::Pluggable to locate the command modules, and installs these into a debugger global (%DB::commands) where they can be found by a modified version of DB::DB.

SEE ALSO

perl5db.pl, notably the documentation for the DB::DB subroutine.

AUTHOR

Joe McMahon, <mcmahon@ibiblio.org>

COPYRIGHT AND LICENSE

Copyright (C) 2005 by Joe McMahon

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.