in reply to External program called via system does not come back

Run said program in the background, wait for it to finish, for ideas see String::ShellQuote , Win32::ShellQuote, Proc::Background, system_detached

Maybe also trow Capture::Tiny in the mix ... :D

  • Comment on Re: External program called via system does not come back

Replies are listed 'Best First'.
Re^2: External program called via system does not come back
by RuntimeError (Acolyte) on Feb 13, 2014 at 09:09 UTC
    Send to background... this is very good idea. I'll try this. Thank you much.