On Tue, Dec 27, 2016 at 05:21:13PM +0100, Martin MOKREJ?? wrote: > Hi, > I wanted to enable error code reporting for piped processes. This should > be doable by "set -o pipeline on".
There is no such set -o keyword. I think you're looking for "set -o pipefail" instead. (Note: there is no "on". The -o means on. If you use +o it means off.)