8 pipeby - Run a command and pipe its output to an other one
12 pipeby I<CMD_2> [I<ARGS> --] I<CMD_1> [I<ARGS>]
16 Equivalent to this shell command:
22 It is simetimes more convenient to skip shell involvement.
59 cmd_2
+=("${cmd_1[@]}")
72 "${cmd_1[@]}" |
"${cmd_2[@]}"