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
while loop inside while loop panknil Shell Programming and Scripting 0 01-07-2008 12:49 PM
Problems with an if/then loop within a script lodey Shell Programming and Scripting 3 09-18-2007 02:45 AM
While loop problems rcunn87 Shell Programming and Scripting 0 06-20-2006 04:26 PM
how to get the similar function in while loop or for loop trynew Shell Programming and Scripting 3 06-17-2002 11:09 AM
'make' problems (compliation problems?) xyyz UNIX for Advanced & Expert Users 5 11-05-2001 10:47 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 05-12-2008
amatuer_lee_3 amatuer_lee_3 is offline
Registered User
  
 

Join Date: May 2008
Posts: 53
while loop problems

I have a problem validating my script. The start of my script begins like this:

Quote:
while yesno=[Yy][Ee][Ss]

do
then after this i have all of my script and functions.

at the end i close the loop with this code:

Quote:
echo "Would you like to run the HITS search again?: "
read yesno

done
What i want to know is, how do i make the loop so that only Yes or no can be an answer?

and if the wrong thing is entered how do i get an error message to appear?
  #2 (permalink)  
Old 05-12-2008
Cameron's Avatar
Cameron Cameron is offline Forum Advisor  
Registered User
  
 

Join Date: Nov 2001
Location: Brisbane, Australia
Posts: 499
How about doing a search using "while loop" and see what you can find ??
  #3 (permalink)  
Old 05-12-2008
gnom gnom is offline
Registered User
  
 

Join Date: Feb 2008
Location: New Zealand
Posts: 66
Try a select statement, like this

select action in "blabla" "blabla" "quit"
do
case $action in
"blabla")
somecommand
;;
.... for each possible command a $action
"quit")
break
;;
*)
print "this is not an option, try again"
;;
esac
done

have fun
gnom
  #4 (permalink)  
Old 05-12-2008
amatuer_lee_3 amatuer_lee_3 is offline
Registered User
  
 

Join Date: May 2008
Posts: 53
ok i hate to sound like a complete lamen, but could you spell it out for me a bit better than that for me please. I am a complete beginner and dont really know much about it.

sorry to be a pain.
  #5 (permalink)  
Old 05-13-2008
Cameron's Avatar
Cameron Cameron is offline Forum Advisor  
Registered User
  
 

Join Date: Nov 2001
Location: Brisbane, Australia
Posts: 499
It's easier to understand when you format your code so that's more manageable to work with and read ...
Code:
select action in "blabla" "blabla" "quit" 
do

  case $action in
    "blabla")  echo "I was passed blabla."
               echo "Now executing a command..."
               somecommandhere ;;  #.... for each possible command in $action
    "quit")    break ;;
    *)         print "this is not an option, try again" ;;
  esac

done
The select statement reads the values after 'in' ... "blabla" "blabla" "quit" .
Then selects each one in turn and passes the value to $action to use within the select statement.
$action is used in the case statement, here the value is compared to those listed values contained within the case statement and if a match is made, executes the code attached to that match. If the value of $action doesn't match any value contained within the case statement, then it is passed to (or rather picked-up by) the statements associated with '*'.

Hope that ruff explaination is of some benefit.

Cheers,
Cameron
  #6 (permalink)  
Old 05-13-2008
gnom gnom is offline
Registered User
  
 

Join Date: Feb 2008
Location: New Zealand
Posts: 66
thanx cameron for the explanation
  #7 (permalink)  
Old 05-13-2008
Cameron's Avatar
Cameron Cameron is offline Forum Advisor  
Registered User
  
 

Join Date: Nov 2001
Location: Brisbane, Australia
Posts: 499
no probs gnom - I hope it's accurate - I don't remember the details, only the structure of it. So was kinda fluking it to put it into words.
Sponsored Links
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 07:22 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language translation by Google.
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