On 2020-11-14 12:23, ToddAndMargo via perl6-users wrote:
Hi All,
How do I use qqx or other to run and release a
program in the background, like bash's "&"?
Many thanks,
-T
My revised keeper:
How to run and release a file:
Note: this command runs OUTSIDE the shell. There are no
envi
> this command runs OUTSIDE the shell. There are no environmental variables
> to be found such as $HOME
Well, not exactly none, but a limited env
$ raku -e 'my $pA = Proc::Async.new( "env" ); $pA.start;'
TERM=xterm
XDG_RUNTIME_DIR=/run/user/1000
XDG_SESSION_TYPE=tty
LESSCLOSE=/usr/bin/lesspipe
On 2020-11-16 15:50, Andy Bach wrote:
> this command runs OUTSIDE the shell. There are no environmental
variables to be found such as $HOME
Well, not exactly none, but a limited env
$ raku -e 'my $pA = Proc::Async.new( "env" ); $pA.start;'
...
Hi Andy,
Limited indeed! I get around it w
say $*PERL.version; # v6.d
say $*PERL.compiler.version; # v2018.12
say ({ 1 | -1 } ... *)[^3]; # (any(1, -1) any(1, -1) any(1, -1))
say $*PERL.version; # v6.d
say $*PERL.compiler.version; # v2020.07
say ({ 1 | -1 } ... *)[^3]; # ((any(1, -1)) (any(1, -1)) (any(1, -1)))
Open a bug report at https://github.com/rakudo/rakudo/issues/ showing the
change in behavior
-y
On Mon, Nov 16, 2020 at 4:39 PM Ralph Mellor
wrote:
> say $*PERL.version; # v6.d
> say $*PERL.compiler.version; # v2018.12
> say ({ 1 | -1 } ... *)[^3]; # (any(1, -1) any(1, -1) any(1, -1))
>
> say