7 lines
192 B
JavaScript
7 lines
192 B
JavaScript
const Mhysa = require("mhysa");
|
|
const catProcess = require("child_process").exec("grep -o ab");
|
|
|
|
Mhysa.fromArray(["a", "b", "c"])
|
|
.pipe(Mhysa.child(catProcess))
|
|
.pipe(process.stdout);
|