http://www.perlmonks.org?node_id=938558


in reply to Make perl script to wait while external process is finish

You use the system function, the default thing it does, is wait for the launched process to finish (assuming the process you launch, doesn't launch another and then finishes)

Maybe even Proc::Background

  • Comment on Re: Make perl script to wait while external process is finish