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


The guys on hte chat line figured it out for me:

$ p6 'my $pA = Proc::Async.new( "/usr/bin/leafpad" ); my $promise = $pA.start;'

Reply via email to