mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-28 11:53:52 +00:00
Update cheatsheets
This commit is contained in:
@@ -5,8 +5,8 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# daemon
|
||||
|
||||
> Run processes into daemons.
|
||||
> More information: <https://manned.org/daemon>.
|
||||
> Turns other processes into daemons.
|
||||
> More information: <https://manned.org/daemon.1>.
|
||||
|
||||
- Run a command as a daemon:
|
||||
|
||||
@@ -14,11 +14,11 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- Run a command as a daemon which will restart if the command crashes:
|
||||
|
||||
`daemon --name="{{name}}" --respawn {{command}}`
|
||||
`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}}" --respawn --attempts=2 --delay=10 {{command}}`
|
||||
`daemon --name="{{name}}" {{[-r|--respawn]}} --attempts=2 --delay=10 {{command}}`
|
||||
|
||||
- Run a command as a daemon, writing logs to a specific file:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user