Concept Flow - Basic regex in grep
Start: Input text file
Run grep with regex
grep reads each line
Check if line matches regex
Print line
End: Output matched lines
grep reads each line of a file, checks if it matches the regex, and prints only matching lines.