1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-04 09:35:23 +02:00

crond: add page (#16893)

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
This commit is contained in:
Kristopher 2025-06-19 11:29:10 -07:00 committed by GitHub
parent 9761160dab
commit add926e74a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

24
pages/linux/crond.md Normal file
View file

@ -0,0 +1,24 @@
# crond
> Daemon to execute scheduled commands from crontab files.
> More information: <https://manned.org/crond>.
- Start daemon in the background and check for scheduled commands:
`crond`
- Start daemon in the foreground and check for scheduled commands:
`crond -n`
- Send job output from the daemon to the system log:
`crond -s`
- Override default limitations and accept custom crontables:
`crond -p`
- Inherit crontab file path from environment settings:
`crond -P`