my $pid = fork(); if ($pid == 0) { print "Hello!\n"; } else { execute(); }