Skip to content

Commit 45a7ac1

Browse files
authored
freshen output
1 parent e49a74e commit 45a7ac1

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

_episodes/06-params.md

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,24 @@ input object on the command line:
3434
```
3535
$ rm hello.tar || true && touch goodbye.txt && tar -cvf hello.tar goodbye.txt
3636
$ cwl-runner tar-param.cwl tar-param-job.yml
37-
[job 139868145165200] $ tar xf /home/example/hello.tar goodbye.txt
38-
Final process status is success
37+
[job tar-param.cwl] /tmp/tmpwH4ouT$ tar \
38+
xf \
39+
/tmp/tmpREYiEt/stgd7764383-99c9-4848-af51-7c2d6e5527d9/hello.tar \
40+
goodbye.txt
41+
[job tar-param.cwl] completed success
3942
{
40-
"example_out": {
41-
"location": "goodbye.txt",
42-
"size": 24,
43-
"class": "File",
44-
"checksum": "sha1$dd0a4c4c49ba43004d6611771972b6cf969c1c01"
45-
}
43+
"example_out": {
44+
"checksum": "sha1$da39a3ee5e6b4b0d3255bfef95601890afd80709",
45+
"basename": "goodbye.txt",
46+
"nameroot": "goodbye",
47+
"nameext": ".txt",
48+
"location": "file:///home/me/cwl/user_guide/goodbye.txt",
49+
"path": "/home/me/cwl/user_guide/goodbye.txt",
50+
"class": "File",
51+
"size": 0
52+
}
4653
}
54+
Final process status is success
4755
```
4856

4957
Certain fields permit parameter references which are enclosed in `$(...)`.

0 commit comments

Comments
 (0)