Images 💾

Last commit ⭐

commit fbf91f41e7ae91ab559c1693ed3428b6b405a9f2
Author:     sin-ack <sin-ack@users.noreply.github.com>
AuthorDate: Sat Jul 16 23:09:03 2022 +0000
Commit:     Ali Mohammad Pur <mpfard@serenityos.org>
CommitDate: Sun Jul 17 00:51:31 2022 +0000

    Shell: Add the |& construct for piping stderr along with stdout
    
    When |& is typed, stderr will be piped to stdout before the actual
    piping happens. This behaves basically like a 2>&1 | (and the
    underlying implementation transforms it to that anyway).