So that you can transparently say "use DBI:from"
> On 9 Aug 2022, at 06:19, ToddAndMargo via perl6-users
> wrote:
>
> $ raku -Msigpipe -e 'loop { say "y"}' | sed 3q
> ===SORRY!=== Error while compiling -e
> Could not find sigpipe in:
>/home/tony/.raku
>/opt/rakudo-pkg/share/perl6/site
>
$ raku -Msigpipe -e 'loop { say "y"}' | sed 3q
===SORRY!=== Error while compiling -e
Could not find sigpipe in:
/home/tony/.raku
/opt/rakudo-pkg/share/perl6/site
/opt/rakudo-pkg/share/perl6/vendor
/opt/rakudo-pkg/share/perl6/core
CompUnit::Repository::AbsolutePath<71837872>
hello Rakoons,
I found the sigpipe module [S13] while reading the Rakudo Weekly
news[rwn] so Raku can handle SIGPIPE the way I think is the good one:
raku -e 'loop { say "y"}' | sed 3q
# some weird error
raku -Msigpipe -e 'loop { say "y"}' | sed 3q
# just works
r