Title: RE: [Perl-unix-users] daemon program in Perl
Try,
#!/usr/bin/perl -w
use strict;
my $pgrp = getpgrp;
print "Initial process group $pgrp\n";
$pgrp = setpgrp(0,0);
print "New process group $pgrp\n";
You probably want to tidy up stdin stdout and
Dear,
Is there anyone who has ever used to create a daemon program in Perl?
I like to create one which heavy requests from web clients can be processed.
But my friends say it's not good.
They have mainly 2 reasons.
One is Perl is so invented to process input data & transform, then put out
as a k