From ed32c682bcd4913bf62f4a056ced55da7e2350a2 Mon Sep 17 00:00:00 2001 From: manveti Date: Thu, 30 Apr 2015 13:32:00 -0700 Subject: [PATCH] Add example in which the command requires quotes --- cron/Help.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cron/Help.txt b/cron/Help.txt index 57854903de..b2bc7a5246 100644 --- a/cron/Help.txt +++ b/cron/Help.txt @@ -95,3 +95,8 @@ Examples: !cron -t 0:00:00 -i 1:00:00 /desc The clock chimes. This will fire every hour, on the hour. (Can also just do "-t 0"). + +!cron -r 10 "!cron -R 42" + This will remove job 42 after 10 rounds. Note that the quotes are required + around commands which contain tokens which are valid !cron arguments (e.g. + "-R"). Without the quotes, this will immediately remove job 42.