βœ•
πŸ’» 25 XP

Terminal & Linux Basics Β· ~7 min Β· 1 quick checks

Pipes: chaining commands

The terminal's superpower: small commands combined.

The pipe | sends one command's output into the next:

cat access.log | grep "ERROR" | wc -l

β†’ read the log β†’ keep only lines containing ERROR β†’ count them. Three tiny tools = one custom analysis.