public class ChattyDaemon
{
public static void main(String[] args) throws IOException
{
new Daemon().withMainArgs(args)
.withPidFile(new File("/tmp/chatty.pid"))
.withStdout(new File("/tmp/chatty.out"))
.withExtraMainArgs("hello", "world,", "how are you?")
.withExtraJvmArgs(remoteDebugOnPort(5005))
.daemonize();