Concept Flow - Single quotes (literal strings)
Start
Encounter single quote '
Treat everything literally
Ignore variables and escapes
End at matching single quote '
Output literal string
End
When bash sees single quotes, it treats everything inside as plain text, ignoring variables or special characters, until it finds the matching closing single quote.