Concept Flow - Command structure (command, options, arguments)
User types command
Shell reads command
Parse command name
Parse options (flags)
Parse arguments
Execute command with options and arguments
Show output or error
The shell reads what you type, breaks it into command, options, and arguments, then runs the command with those details.