Asking a Yes/No Question from a Bash Script
Jul 01, 2009, 21:32 (0 Talkback[s])
(Other stories by Mitch Frazier)
"The function is pretty simple it accepts a couple of options
and the remainder of the arguments are presumed to be the question
text. It prompts the user for an answer and validates that the
answer is one of "yes", "y", "no", or "n". The answer is converted
to lower case so any combination of case is accepted.
"The available options are --timeout N which causes the prompt
to timeout after N seconds, and --default ANS which provides a
default answer for prompts that timeout. It also allows the user to
hit ENTER and accept the default answer. The function code
follows:"
Complete Story
Related Stories:
- Creating Secure Tunnels With ssh(Jun 18, 2009)
- Creating a Bash Spinner(Jun 15, 2009)
- Protect Your PostScript Files from Being Converted to PDF(May 15, 2009)
- Use the Bash trap Statement to Clean Up Temporary Files(May 12, 2009)
- The Bash declare Statement(Apr 29, 2009)
- Add a Binary Payload to your Shell Scripts(Feb 20, 2009)
- Python (pyuno) "Hello World" Addon for OpenOffice(Feb 07, 2009)
- Starting, Stopping, and Connecting to OpenOffice with Python(Dec 25, 2008)
- Running DOS Programs on Linux: Duke Nukem Lives!(Dec 08, 2008)
- From Windows Capable to the Linux Laptop(Nov 18, 2008)
- Bash Sub Shells(Nov 12, 2008)
- Bash: Preserving Whitespace Using set and eval(Nov 06, 2008)