Concept Flow - sed (stream editor) basics
Start with input text
sed reads line
Apply sed command
Output modified line
Repeat for next line
End of input?
No→sed reads next line
Yes
Finish
sed reads input line by line, applies the editing command, outputs the result, and repeats until all lines are processed.