Re: Executing external program

2004-06-06 Thread Carsten Schultz
Hi! On Sun, Jun 06, 2004 at 09:33:39PM +, Gerd M wrote: > Is there a simple way to execute a different process from a Haskell > program, waiting for it's termination and then continuing with the next IO > action? Have a look at the module System.Cmd. Greetings, Carsten -- Carsten Schult

Executing external program

2004-06-06 Thread Gerd M
Is there a simple way to execute a different process from a Haskell program, waiting for it's termination and then continuing with the next IO action? Or does one have to use the forkIO & waiting for the child process - stuff? regards _