@@ -146,8 +146,7 @@ def get_version(long=False):
146
146
$ cylc pause foo/run1
147
147
$ cylc stop foo/run1
148
148
149
- In the case of numbered runs (e.g. "run1", "run2", ...) you can omit
150
- the run number, Cylc will infer latest run.
149
+ If you omit run number ("run1", "run2", ...) Cylc will infer latest run.
151
150
$ cylc play foo
152
151
$ cylc pause foo
153
152
$ cylc stop foo
@@ -164,8 +163,7 @@ def get_version(long=False):
164
163
You can omit the user name when working on your own workflows.
165
164
166
165
Cycle / Family / Task / Job IDs:
167
- Just as workflows have IDs, the things within workflows have IDs too.
168
- These IDs take the format:
166
+ Just as workflows have IDs, so do objects within workflows:
169
167
cycle/task_or_family/job
170
168
171
169
Examples:
@@ -174,8 +172,7 @@ def get_version(long=False):
174
172
1/a/1 # The first job of the task "a" in the cycle point "1".
175
173
176
174
Full ID
177
- We join the workflow and cycle/task/job IDs together using //:
178
- workflow//cycle/task/job
175
+ Join workflow and cycle/task/job IDs with //: workflow//cycle/task/job
179
176
180
177
Examples:
181
178
w// # The workflow "w"
@@ -201,8 +198,9 @@ def get_version(long=False):
201
198
workflow//cycle/task/* # All jobs in workflow//cycle/job
202
199
203
200
Warning:
204
- Remember to write IDs inside single quotes when using them on the
205
- command line otherwise your shell may expand them.
201
+ Quote IDs on the command line to protect them from shell expansion.
202
+ Patterns only match tasks in the n=0 active window (except for the
203
+ `cylc show` command where they match in the wider n-window).
206
204
207
205
Filters
208
206
Filters allow you to filter for specific states.
0 commit comments