pipeline(*cmds)
Class Public methods
::pipeline starts a list of
commands as a pipeline. It waits the finish of the commands. No pipe made
for stdin of the first command and stdout of the last command.
status_list = Open3.pipeline(cmd1, cmd2, ... [, opts])
Each cmd is a string or an array. If it is an array, the elements are
passed to Process.spawn.
cmd:
commandline command line string which is passed to a shell
[env, commandline, opts]