#!/usr/local/bin/perl -w

use strict "vars";
#-----------------------------------------------------------------------------
$| = 1;

#----Print the PID to be collected by the monitor, then exec the task which
#----is in the args.
print("PID = $$\n");

exec("@ARGV") or print("ERROR (Can't start task): @ARGV\n");
#-----------------------------------------------------------------------------

