Create a numbered shell menu.
Section: Loops
Simple select menu
bash
bash
select choice in start stop status quit; do echo "$choice"; break; doneExplanation
Useful for interactive admin helpers.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing Loops