aboutsummaryrefslogtreecommitdiff
path: root/doc/capture-output-file.scm
blob: 2993c48ab48eda9b9c7eadffdddb09e1a1596df8 (plain)
1
2
3
4
5
6
7
8
9
(define extract
  (command #:inputs (archive #:type File)
           #:run "tar" "--extract" "--file" archive
           #:outputs (extracted-file
                      #:type File
                      #:binding '((glob . "hello.txt")))))

(workflow ((archive #:type File))
  (extract #:archive archive))