From 50ac0871403b958deef9ff5a6c856c57eef05897 Mon Sep 17 00:00:00 2001 From: Kocsen Date: Mon, 15 Feb 2016 11:02:20 -0500 Subject: [PATCH] crontab: add page --- pages/common/crontab.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pages/common/crontab.md diff --git a/pages/common/crontab.md b/pages/common/crontab.md new file mode 100644 index 000000000..6d4faa75e --- /dev/null +++ b/pages/common/crontab.md @@ -0,0 +1,15 @@ +# crontab + +> Schedule cron jobs to run on a time interval for the current user. + +- Edit the crontab file for the current user: + +`crontab -e` + +- View a list of existing cron jobs for current user: + +`crontab -l` + +- Remove all cron jobs for the current user: + +`crontab -r`