Show lines where column 3 is greater than 100.
Section: awk Filtering and Aggregation
Print rows matching a condition
bash
bash
awk '$3 > 100 {print $0}' metrics.txtExplanation
Awk's pattern-action style is ideal for tabular filtering.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing awk Filtering and Aggregation