This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Another newbie Bash question


John Mamer wrote:
> 
> #!/bin/sh
> echo -n "First variable: "
> read VAR1
> echo -n "Secnd variable: "
>
> it reads the first variable, and then skips
> through the second two reads.
> Is there some way to flush the keyboard buffer between
> reads?

To John!
There is a simple "flush":

echo -n First variable:
read VAR1; read 
echo -n Secnd variable:
read VAR2; read
echo -n Third variable:
read VAR3; read
echo "The variables were: $VAR1 $VAR2 $VAR3"

Tage

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]