| Home
| Calendar
| Mail Lists
| List Archives
| Desktop SIG
| Hardware Hacking SIG
Wiki | Flickr | PicasaWeb | Video | Maps & Directions | Installfests | Keysignings Linux Cafe | Meeting Notes | Linux Links | Bling | About BLU |
Stephen Adler <adler at stephenadler.com> writes:
> Basically I want to write a shell script which askes,
> "Are you sure you want to proceed? [N/y] " and then acts according to user
> input at the command line.
getyN() {
while echo -n "${@}"' (y/N) '>&2
do read yn rest
case $yn in
[yY]) return 0 ;;
*) return 1
esac
done
}
if getyN "Are you your you want to proceed?" ; then
echo launching missles now
else
echo "let's watch a movie instead"
fi
(small Unix portability nit: "echo -n" is not portable)
Regards,
--kevin
--
GnuPG ID: B280F24E And the madness of the crowd
alumni.unh.edu!kdc Is an epileptic fit
-- Tom Waits
--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.