From add926e74ad59a70b6f0e4dc4fd432ae992f826c Mon Sep 17 00:00:00 2001 From: Kristopher Date: Thu, 19 Jun 2025 11:29:10 -0700 Subject: [PATCH] crond: add page (#16893) Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> --- pages/linux/crond.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/crond.md diff --git a/pages/linux/crond.md b/pages/linux/crond.md new file mode 100644 index 0000000000..7b009acdcd --- /dev/null +++ b/pages/linux/crond.md @@ -0,0 +1,24 @@ +# crond + +> Daemon to execute scheduled commands from crontab files. +> More information: . + +- 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`