in reply to Re: Can I use Mojo::IOLoop::Subprocess for a non-blocking process?
in thread Can I use Mojo::IOLoop::Subprocess for a non-blocking process?
Yup .. that's what I ended up doing.
my $cmd = "cd /home/foo/$row->{'dir'} && " . "./$row->{'name'}.pl >some.out 2>some.err &"; my $result = system ( $cmd );
And it works fine. Thanks for following up.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Can I use Mojo::IOLoop::Subprocess for a non-blocking process?
by afoken (Chancellor) on Mar 30, 2019 at 15:56 UTC | |
by talexb (Chancellor) on Mar 31, 2019 at 19:04 UTC | |
by Anonymous Monk on Mar 30, 2019 at 17:48 UTC |