Help for this page
#!/usr/local/bin/perl my $pid = fork(); ... # Everything below here is the parent process print "This is the parent process\n";
#!/usr/local/bin/perl use Proc::Daemon; ... print OUT `/bin/date`; sleep( 2 ); }