in reply to Re: Automatically restarting process
in thread [untitled node, ID 185227]

Abigail-II's suggestions is best on *nix. If you are stuck on Windows I would recommend Win32::Process
use Win32::Process; my $ProcessObj; while(1) { Win32::Process::Create( $ProcessObj, $appname, $cmdline, $iflags, $cflags, $curdir) or die; $ProcessObj->Wait(INFINITE); }

flounder