ancient-vegetable-10556
09/28/2021, 5:49 PMcat
seems to only output things to stdout)hundreds-father-404
09/28/2021, 5:57 PMancient-vegetable-10556
09/28/2021, 5:57 PMhundreds-father-404
09/28/2021, 5:57 PMProcess
and then pipe ProcessResult.stdout
into CreateDigest()
ancient-vegetable-10556
09/28/2021, 5:58 PMProcessResult.stdout
is a string, and not a pipe, which would materialise the results of the process into memory (bad)bash -c "cat file1 file2 > outputfile"
hundreds-father-404
09/28/2021, 5:59 PMProcess(output_files=)
Indeed, you need some way for the process itself to right directly to a fileancient-vegetable-10556
09/28/2021, 5:59 PMwitty-crayon-22786
09/28/2021, 6:27 PMBashBinary
ancient-vegetable-10556
09/28/2021, 6:29 PM