shell script case statement


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting shell script case statement
# 1  
Old 10-02-2008
shell script case statement

In a case statement like below :

case $rental in
"car") echo "For $rental Rs.20 per k/m";;
"van") echo "For $rental Rs.10 per k/m";;
"jeep") echo "For $rental Rs.5 per k/m";;
"bicycle") echo "For $rental 20 paisa per k/m";;
*) echo "Sorry, I can not gat a $rental for you";;
esac



I do not want menu to exit unles right option is used , how do i do that ?

-Thanks

Last edited by sriram003; 10-02-2008 at 03:46 AM..
# 2  
Old 10-02-2008
Code:
while true; do
  cat <<__HERE
Today's menu
  car -- your choice of black or black
  van -- it puts the Jacobson back into van Jacobson compression!
  jeep -- can't think of anything funny here
  bicycle -- at least it beats walking
__HERE
  read rental
  fee=
  case $rental in
    car) fee=Rs.20;;
    van) fee=Rs.10;;
    jeep) fee=Rs.5;;
    bicycle) fee="20 paisa";;
  esac
  case $fee in
    "") echo "Sorry, cannot get a $rental for you"; continue;;
    *) echo "For $rental $fee per k/m"; break;;
  case
done

The refactoring into two separate case statements is not at all necessary, but it makes the script a little bit easier to edit in the future.
# 3  
Old 10-04-2008

Code:
menu="Select: car | van | jeep | bicycle"
while :
do
  printf "%s\n: " "$menu"
  read rental
  case $rental in
   "car") echo "For $rental Rs.20 per k/m"; break;;
   "van") echo "For $rental Rs.10 per k/m"; break;;
   "jeep") echo "For $rental Rs.5 per k/m"; break;;
   "bicycle") echo "For $rental 20 paisa per k/m"; break;;
   *) echo "Sorry, I can not get a $rental for you";;
  esac
done

# 4  
Old 10-16-2008
I dont want to exit , it should keep looping in above statement :

After it gives result it should go back to menu ....
# 5  
Old 10-16-2008
Then remove the break statements.
This User Gave Thanks to cfajohnson For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell script run in a case statement call to run a php file, also Perl

Linux System having all Perl, Python, PHP (and Ruby) installed From a Shell script, can call a Perl, Python, PHP (or Ruby ?) file eg eg a Shell script run in a case statement call to run a php file, also Perl or/and Python file??? Like #!/usr/bin/bash .... .... case $INPUT_STRING... (1 Reply)
Discussion started by: hoyanet
1 Replies

2. Shell Programming and Scripting

Shell scripting with case statement

Foe example we have three environments int,qa and prod.Each environment has some number of servers. int=Server1,Server2,Server3 qa=Server4,Server5,Server6 prod=Server7,Server8,Server9 echo "Enter the Environment i.e int,qa,prod" read env case $env in int) ## Need command where all the... (9 Replies)
Discussion started by: nareshreddy443
9 Replies

3. Shell Programming and Scripting

Using shell to generate case statement

Hi Gurus, I have a very weird requirement and have no clue to resolve the issue. please help me get out this difficulty below two tables, table1 contains the column name. D means this column used for the rule. for example: rule 0 is all columns have value, rule1 is col3 and col7 have no value.... (2 Replies)
Discussion started by: Torhong
2 Replies

4. Shell Programming and Scripting

Case statement in UNIX shell script

have written the below code to check whether the string received from user is a file name or dir using case statement, but its going into default case*). #!/bin/sh #Get a string from user and check whether its a existing filename or not rm str2 rm str3 echo "enter a file \c" read fil... (8 Replies)
Discussion started by: Mohan0509
8 Replies

5. Shell Programming and Scripting

Pass values to case statement in a function korn shell

I'm in the process of writng a function that consists of a case statement is there a way of calling the function and passing a value to it? ie function1 () { case opt1 do ..... opt2 do..... esac } function opt1 I'm aware the syntax is not correct, but you get the general idea. (1 Reply)
Discussion started by: squrcles
1 Replies

6. Shell Programming and Scripting

Help With Loop in Case Statement script

I am writing a bash script that asks the user for input and I need it to repeat until the user selects quit.. I dont know how to write the loop for it I searched all over but i still do not get it.. if anyone could help with this it would be greatly apprciated here is my script so far: #!... (2 Replies)
Discussion started by: Emin_Em
2 Replies

7. Shell Programming and Scripting

Shell case statement

echo -e "Select: \c" read IN pattern="1-20" case $IN in ) echo "Selected: $IN" ;; *) echo "Invalid selection: $IN" ;; esac # sh test Select: 10 Invalid selection: 10 # sh test Select: 2 (6 Replies)
Discussion started by: Ikon
6 Replies

8. Shell Programming and Scripting

what is problem with this small shell script.. case statement related

Hi All, this small script is written to recognize user input character.. it is in small case .. upeer case or is a number... but when i input first capital letter say A.. it always gives small character.... what is the problem. #!/bin/bash echo "Enter the character" read a case $a in )... (2 Replies)
Discussion started by: johnray31
2 Replies

9. Shell Programming and Scripting

Shell script automation using case statement

Hi, I'm trying to write a shell script that has a menu and then dependant on the selection, will automate some samba file transfer. The problem is when I run the code without the case statement it runs fine. but when I put the case statement in the only way I can get the code to run is to... (6 Replies)
Discussion started by: ianf
6 Replies

10. UNIX for Dummies Questions & Answers

lower case to upper case string conversion in shell script

How can convert a Lower case variable value to an upper case in the kron shell script. (3 Replies)
Discussion started by: dchalavadi
3 Replies
Login or Register to Ask a Question