portable perl call
[mkws-moved-to-github.git] / test / bin / bomb
index 255bea5..044bf12 100755 (executable)
@@ -3,15 +3,15 @@
 #
 # bomb - wrapper to stop a process after N seconds
 
-# Turn on job control. This will switch to process group
+# Turn on job control. This will switch the process group
 # as on an interactive shell, and make sure that a signal
-# to the process group will not kill any parent processes
+# to the process group will not kill any parent processes.
 set -o monitor
 
 # now run the perl script. For unknown reasons, the
 # call to setpgrp() in perl does not work as expected,
 # and we solve the issue by this simple shell wrapper
 
-exec $0.pl "$@"
+perl $0.pl "$@"
 
 # EOF