File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -328,14 +328,14 @@ class CylcOptionParser(OptionParser):
328
328
"""Common options for all cylc CLI commands."""
329
329
330
330
MULTITASK_USAGE = cparse (dedent ('''
331
- This command can operate on multiple tasks, globs and selectors may
332
- be used:
331
+ This command can operate on multiple tasks. Globs and selectors may
332
+ be used to match active tasks :
333
333
Multiple Tasks:
334
334
<dim># Operate on two tasks</dim>
335
335
workflow //cycle-1/task-1 //cycle-2/task-2
336
336
337
337
Globs (note: globs should be quoted and only match active tasks):
338
- <dim># Match any the active task "foo" in all cycles</dim>
338
+ <dim># Match any active task "foo" in all cycles</dim>
339
339
'//*/foo'
340
340
341
341
<dim># Match the tasks "foo-1" and "foo-2"</dim>
@@ -348,7 +348,7 @@ class CylcOptionParser(OptionParser):
348
348
See `cylc help id` for more details.
349
349
''' ))
350
350
MULTIWORKFLOW_USAGE = cparse (dedent ('''
351
- This command can operate on multiple workflows, globs may also be used:
351
+ This command can operate on multiple workflows. Globs may be used:
352
352
Multiple Workflows:
353
353
<dim># Operate on two workflows</dim>
354
354
workflow-1 workflow-2
Original file line number Diff line number Diff line change 20
20
21
21
Hold task(s) in a workflow.
22
22
23
- Held tasks do not submit their jobs even if ready to run.
23
+ Held tasks do not submit jobs even if ready.
24
+
25
+ Any task can be held.
26
+
27
+ Note: a held running task will not submit more jobs itself (e.g. by retries)
28
+ until released, but the running job may still complete outputs that cause
29
+ non-held downstream tasks to trigger.
24
30
25
31
To pause an entire workflow use "cylc pause".
26
32
You can’t perform that action at this time.
0 commit comments