blob: 57369d2de3a2ec13200061ee0f27e718139d167f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
$ ccwl compile capture-output-file.scm > capture-output-file.cwl
$ cwltool capture-output-file.cwl --archive hello.tar --extractfile hello.txt
[workflow ] start
[workflow ] starting step extract-specific-file
[step extract-specific-file] start
[job extract-specific-file] /tmp/751nydd1$ tar \
--extract \
--file \
/tmp/1zzw2n6m/stgc851e003-b5bd-437e-844b-311f6f66a7f1/hello.tar \
hello.txt
[job extract-specific-file] completed success
[step extract-specific-file] completed success
[workflow ] completed success
{
"extracted-file": {
"location": "file:///home/manimekalai/hello.txt",
"basename": "hello.txt",
"class": "File",
"checksum": "sha1$a0b65939670bc2c010f4d5d6a0b3e4e4590fb92b",
"size": 13,
"path": "/home/manimekalai/hello.txt"
}
}
Final process status is success
|