
daemon
List of commands for daemon:
-
daemon:tldr:5dc09 daemon: Run a command as a daemon which will restart if the command crashes.$ daemon --name="${name}" --respawn ${command}try on your machineexplain this command
-
daemon:tldr:7d319 daemon: Run a command as a daemon.$ daemon --name="${name}" ${command}try on your machineexplain this command
-
daemon:tldr:81dfe daemon: Run a command as a daemon, writing logs to a specific file.$ daemon --name="${name}" --errlog=${filename-log} ${command}try on your machineexplain this command
-
daemon:tldr:c48e0 daemon: Run a command as a daemon which will restart if it crashes, with two attempts every 10 seconds.$ daemon --name="${name}" --respawn --attempts=2 --delay=10 ${command}try on your machineexplain this command
-
daemon:tldr:eac6b daemon: Kill a daemon (SIGTERM).$ daemon --name="${name}" --stoptry on your machineexplain this command