mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
This makes commands like `foo 2>&1 | bar` behave as expected (which is to pipe both stdout and stderr of `foo` to stdin of `bar`). Previously, this would've piped stderr of `foo` into stdout, and the stdout of `foo` into the stdin of `bar`.