From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tony Pires To: "Steve Kirsch" Cc: Subject: Re: read doesn't read the second time Date: Wed, 23 Sep 1998 19:20:00 -0000 Message-id: <1.5.4.16.19980924022012.40cf3178@fox.nstn.ca> X-SW-Source: 1998-09/msg00646.html Try this: #! /bin/sh echo -e "enter yes/no: \c"; read answer; echo $answer echo -e "enter yes/no: \c"; read answer; echo $answer At 12:06 PM 9/21/98 -0700, you wrote: >This script fails to wait for the second number to be input: > >read -p "enter number: " num1 >read -p "enter another number: " num2 >echo "done" > > - For help on using this list (especially unsubscribing), send a message to "gnu-win32-request@cygnus.com" with one line of text: "help".