Some *able info, if anyone is interested: Output on all releases: https://gist.github.com/a68b094519839b939f8c70d66a80d8c0
Some possibly relevant commits: https://github.com/rakudo/rakudo/commit/92bd7e4f54a92fa660f99b4d056d33a08fb98bd2 https://github.com/rakudo/rakudo/commit/6dae179a8418bd2fcf5cc4b23e0feb3727c794a1 On 2017-11-22 11:26:59, c...@tilmes.org wrote: > % perl6 -e 'my $proc = run "cat", :in, :out; $proc.in.say: "test\n"; say > $proc.out.get; $proc.in.close;' > test > > % perl6 -e 'my $proc = run "cat", :in, :out; say > $proc.out.native-descriptor; $proc.in.say: "test\n"; say $proc.out.get; > $proc.in.close;' > 28 > Nil