>>> toChunks "echo hello world" & Stdio.putChunks hello worldPre-release
>>> :{ Process.toChunks "echo" ["hello world"] & Stream.fold Stdio.writeChunks :} hello world
>>> toChunks = toChunksWith id
>>> :{ toChunksEither "bash" ["-c", "echo 'hello'; echo 'world' 1>&2"] & Stream.fold (Fold.partition Stdio.writeErrChunks Stdio.writeChunks) :} world hello ((),())
>>> toChunksEither = toChunksEitherWith idPrefer toChunksEither over toBytesEither when performance matters. Pre-release