. . . while (1) {  my $command = "cd /usr/bin/; ./aufruf.plx";  .  . Prüfungen und sonstiger Code  .  .  $pid = fork();  if ($pid == 0)  {    alarm 10;    $SIG{'ALRM'}= sub {exit 1;};    system ("ssh [SERVER] \"$command\"");    exit;  }  .  .  . } . .