Enumerable.prototype.run<S>(options: ProcessOptions<S>,...cmd: Cmd,): Run<S, T>
Run a process, piping this iterable's output to its stdin.
This allows chaining processes together like shell pipes. The current iterable's data is written to the new process's stdin, and the new process's stdout becomes the new iterable.
options: ProcessOptions<S>
Options.
...cmd: Cmd