How can I execute an external command and capture its output in Perl6?
Perl5-style back-ticks don't seem to work:
> my $results = `ls`;
Confused at line 1, near "my $results"
Synopsis 16 documents the run method, but this returns the exit status rather than the output from stdout.
I'm using the Rakudo implementation (rakudo-star-2010.12).