Concept Flow - Backticks and $() for command substitution
Start script
Run command inside backticks or $()
Shell executes command
Command outputs text
Shell replaces substitution with output
Use output in script
Continue script execution
The shell runs the command inside backticks or $(), captures its output, and replaces the substitution with that output for use in the script.