= Shell Pipeline = <> ---- == Pipelines == A '''pipeline''' is a series of commands like `commanda | commandb`. In this case, the `STDOUT` of `commanda` is used as `STDIN` for `commandb`. Each command is executed in a subshell, and the exit code is set according to the final command. ---- CategoryRicottone