diff --git a/doc/Admin.md b/doc/Admin.md index 1e72eb9d..76240650 100644 --- a/doc/Admin.md +++ b/doc/Admin.md @@ -562,12 +562,20 @@ For example, to schedule a command to run 1 hour from now: Ta-da! -The `remove` command's `` argument can include wildcards of the form `.*` or `.*?`. For example, -to remove all `command` events, you can simply do: +The `remove` command's `` argument can include wildcards of the form `.*`. For example, +to remove all `command` events: eventqueue remove command .* Removed 1 event. +Or to remove all `command` events in `#channel`: + + eventqueue remove command #channel .* + +Or to remove all events in `#channel`: + + eventqueue remove .* #channel .* + ## Process management commands ### ps Lists all currently running background processes.