mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
34 lines
804 B
Plaintext
34 lines
804 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# daemon
|
|
|
|
> Turns other processes into daemons.
|
|
> More information: <https://manned.org/daemon.1>.
|
|
|
|
- Run a command as a daemon:
|
|
|
|
`daemon --name="{{name}}" {{command}}`
|
|
|
|
- Run a command as a daemon which will restart if the command crashes:
|
|
|
|
`daemon --name="{{name}}" {{[-r|--respawn]}} {{command}}`
|
|
|
|
- Run a command as a daemon which will restart if it crashes, with two attempts every 10 seconds:
|
|
|
|
`daemon --name="{{name}}" {{[-r|--respawn]}} --attempts=2 --delay=10 {{command}}`
|
|
|
|
- Run a command as a daemon, writing logs to a specific file:
|
|
|
|
`daemon --name="{{name}}" --errlog={{path/to/file.log}} {{command}}`
|
|
|
|
- Kill a daemon (SIGTERM):
|
|
|
|
`daemon --name="{{name}}" --stop`
|
|
|
|
- List daemons:
|
|
|
|
`daemon --list`
|