Shell Command Pipelines

Shell command pipelines are a feature of *nix shells. This feature allows you to redirect the output of one command directly to the input of another command. Command pipelines are built by typing a syntactically correct command, then entering the “pipe character, “|” then another syntactically correct command. This can be done as many times …