Concept Flow - exec for running shell commands
Start
Call exec with command
Node.js runs shell command
Command executes in shell
Shell returns output or error
Callback receives error, stdout, stderr
Process output or handle error
End
This flow shows how Node.js exec runs a shell command, waits for it to finish, then returns output or error to the callback.