```` multimethod
Methods
- ````(cp:CommandsPipeline) Source: stdlib.ngs:4950
Get command standard output and decode() it. Automatically called by NGS for syntax
``my_command`` , ``my_command | my_other_command``
Returns
structured data when the output can be parsed.Example
``aws ec2 describe-instances`` is Arr # true ``aws ec2 describe-instances``.InstanceId.map(X[0..3]).join(",") # i-3, i-9, i-8, i-a, i-7, ...