Subject: | doesn't work with external programs |
First, this is really cool! It would be nice if it also worked for
external programs. I know that Capture::Tiny can take output from
external programs and do stuff with it, would that be possible here too?
It looks like output from XS already works, so that's good.
Here's my very simple test case with external programs:
bash jade wip $ cat test.pl
#!/usr/bin/perl
use Devel::Ditto;
system("echo asdf");
print "asdf\n";
bash jade wip $ perl test.pl
asdf
[main, test.pl, 5] asdf
bash jade wip $