http://qs321.pair.com?node_id=1046186


in reply to Re: Use Perl Debugger, where input is the output from shell script
in thread Use Perl Debugger, where input is the output from shell script

could you please give some resources with examples

  • Comment on Re^2: Use Perl Debugger, where input is the output from shell script

Replies are listed 'Best First'.
Re^3: Use Perl Debugger, where input is the output from shell script
by pemungkah (Priest) on Jul 26, 2013 at 02:26 UTC
    Take a gander at Devel::Command::Tdump for an example of using the typeahead buffer. Debug::Client seems to be a client to talk to the debugger port.

    I don't see any examples of using the filehandle stack - you probably have to do that one yourself if it turns out to be the solution you need - but the basic setup that Devel::Command::Tdump uses, of setting things up in .perldb, is probably the right point to start from; open a pipe to your client program in the BEGIN block, and push it onto @DB::cmdfhs. The debugger will read from it until it returns EOF or a 'q'commmand is seen.