Skip to content

Commit e49a74e

Browse files
authored
freshen output
1 parent f2a1f62 commit e49a74e

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

_episodes/05-stdout.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,21 @@ on the command line:
3131

3232
```
3333
$ cwl-runner stdout.cwl echo-job.yml
34-
[job 140199012414352] $ echo 'Hello world!' > output.txt
35-
Final process status is success
34+
[job stdout.cwl] /tmp/tmpE0gTz7$ echo \
35+
'Hello world!' > /tmp/tmpE0gTz7/output.txt
36+
[job stdout.cwl] completed success
3637
{
37-
"output": {
38-
"location": "output.txt",
39-
"size": 13,
40-
"class": "File",
41-
"checksum": "sha1$47a013e660d408619d894b20806b1d5086aab03b"
42-
}
38+
"output": {
39+
"checksum": "sha1$47a013e660d408619d894b20806b1d5086aab03b",
40+
"basename": "output.txt",
41+
"nameroot": "output",
42+
"nameext": ".txt",
43+
"location": "file:///home/me/cwl/user_guide/output.txt",
44+
"path": "/home/me/cwl/user_guide/output.txt",
45+
"class": "File",
46+
"size": 13
47+
}
4348
}
44-
$ cat output.txt
45-
Hello world!
49+
Final process status is success
50+
4651
```

0 commit comments

Comments
 (0)