How do i get the process id into a variable ? can any one help
Process Id of what?
$$ will contain the process id your current perl script. perldoc perlvar
If you want to get the process id based on the command name, Proc::ProcessTable will interest you.
$pid = qx(ps -f|grep srvtst26); print "Server Started : $pid \n
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]