24 / 55 · 19 Linux & Command Line · Pipes and Redirection← prev⊞ allnext →☰ Read as one page
4.1The Unix Philosophy: Small Tools, Big Results
Pipes (|) connect the output of one command to the input of another. Redirection (>, >>, <) connects commands to files. Together, they let you build powerful data processing pipelines from simple building blocks.
This is the Unix philosophy: each command does one thing well, and pipes combine them into workflows that no single command could accomplish alone.