File: Output.pm

package info (click to toggle)
libdevel-ebug-perl 0.53-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 360 kB
  • sloc: perl: 2,056; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 283 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package Devel::ebug::Plugin::Output;
use strict;
use warnings;
use base qw(Exporter);
our @EXPORT = qw(output);

# return stdout, stderr
sub output {
  my($self) = @_;
  my $response = $self->talk({ command => "output" });
  return ($response->{stdout}, $response->{stderr});
}


1;