in reply to How do I start a long process with a short visit to a URL?
#!/usr/bin/perl use strict; use warnings; use Net::Server::Daemonize qw( daemonize ); print("Content-type: text/plain\n\nOK"); daemonize($>, $), undef); ... [download]