Pipe in Linux
January 14, 2023 |
permanent
Summary #
The Pipe is a command in Linux that lets you use two or more commands such that output of one command serves as input to the next. In short, the output of each process directly as input to the next one like a pipeline. The symbol ‘|’ denotes a pipe.
Examples #
cat sample | grep -v a | sort - r