my a=0; while (++$a <= 10) { unless (fork()) { # Here I want execute and continue without # wait the status exec( 'perl sleep.pl'); #This exit isn't necessary, isn't it? exit(0); } }