Print rows that satisfy a condition.
Section: sed awk and Structured Text Workflows
Filter rows with awk
bash
bash
awk '$5 > 100 {print $0}' usage.txtExplanation
Useful when conditions go beyond what `grep` handles cleanly.
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 sed awk and Structured Text Workflows