Concept Flow - awk patterns and actions
Read line from input
Check pattern match?
No→Skip line
Yes
Execute action block
Output result if action prints
Repeat for next line
End of input?
Yes
Exit
Awk reads each line, checks if it matches a pattern, runs actions if matched, then moves to next line until input ends.