blob: 4ba251c197abc828cb2f01b606de063d0b97bcb5 (
plain)
1
2
3
4
5
6
7
8
|
(define count-bytes
(command #:inputs (file #:type File)
#:run "wc" "-c"
#:outputs (bytes #:type stdout)
#:stdin file))
(workflow ((file #:type File))
(count-bytes #:file file))
|