The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Enter to OBP jess_t03 SUN Solaris 5 02-13-2008 12:14 PM
Cant enter password possuman72 SUN Solaris 2 06-10-2005 02:44 PM
HELP with Enter Character zecarlos Shell Programming and Scripting 1 01-30-2002 12:25 PM
hit 'enter' with no user intervention jpprial UNIX for Dummies Questions & Answers 1 09-28-2001 12:05 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 11-27-2006
sars sars is offline
Registered User
  
 

Join Date: Oct 2006
Posts: 19
Lightbulb read the ENTER key

Hi ,

I do the following :

]echo "Do you want to say yes or no ?(y/n)[n]:\c"
read ans


here 'n' is the default value.that means if the user press ENTER key then it should be 'n' .
Now how do i know that the user has pressed ENTER key.What will be stored in my variable 'ans'.
  #2 (permalink)  
Old 11-27-2006
grial's Avatar
grial grial is offline Forum Advisor  
El UNIX es como un toro
  
 

Join Date: Jun 2006
Location: Madrid (Spain)
Posts: 531
Quote:
Originally Posted by sars
here 'n' is the default value.that means if the user press ENTER key then it should be 'n' .
No
Quote:
Originally Posted by sars
Now how do i know that the user has pressed ENTER key.What will be stored in my variable 'ans'.
ans will contain what you typed until the enter key was pressed. If you only press enter, then that variable will be empty.
To do what you want, you need to do something like:
Code:
echo "Do you want to say yes or no ?(y/n)[n]:\c"
read ans
case $ans in
n|"")
  echo no;;
y)
  echo yes;;
*)
  echo other;;
esac

Last edited by grial; 11-27-2006 at 08:04 AM..
  #3 (permalink)  
Old 11-27-2006
srikanthus2002's Avatar
srikanthus2002 srikanthus2002 is offline
Registered User
  
 

Join Date: Sep 2006
Location: Can u guess...!
Posts: 160
I am not sure

"^m" would be stored in variable if you are using Linux
  #4 (permalink)  
Old 11-27-2006
grial's Avatar
grial grial is offline Forum Advisor  
El UNIX es como un toro
  
 

Join Date: Jun 2006
Location: Madrid (Spain)
Posts: 531
I've modified the code I posted before, have a look at it now. It works in Linux (bash) also.
What I meant with empty was "no printable chars", I'm sorry
  #5 (permalink)  
Old 11-27-2006
Perderabo's Avatar
Perderabo Perderabo is offline Forum Staff  
Unix Daemon
  
 

Join Date: Aug 2001
Location: Ashburn, Virginia
Posts: 9,111
I'm not sure how literally sars meant the question. But here is an interesting thread about reading a single keystroke from a shell script.
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 11:19 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0