Concept Flow - Silent input with read -s (passwords)
Start Script
Prompt user for password
read -s waits silently
User types password (no echo)
Password stored in variable
Use or display confirmation
End Script
The script prompts the user silently for a password using read -s, stores it, then proceeds without showing input.