Help regarding a bash menu script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help regarding a bash menu script
# 1  
Old 04-05-2010
Help regarding a bash menu script

Greetings all,
I'm having some trouble writing a menu drive bash script, actually coding the menu part was not difficult however its a problem with a menu option I'm having trouble with.
My menu has 5 options, when the user selects the second option, they are then prompted to enter a number from 1-9 and depending on what number they entered the following output should be displayed

Code:
1
12
123
1234

i.e. they entered 4

now this seems like this should really not be that hard, but for the life of me can't figure it out...what I have so far is:::

Code:
#!/bin/bash
echo
echo "***********************"
echo "***********************"
echo
declare stop=0
while [ $stop == 0 ]; do
cat <<ENDOFMENU
1       : the first option
2       : the second option
3       : the third option
4       : the fourth option
5       : the fifth option
ENDOFMENU

echo
echo -n " Your choice? : "
read choice

...

case $choice in
  2)    echo -n " Now please enter a number 1-9 : "
        read number
        declare i=1
        while (( $i  <= $number )); do
                declare j=1
                while (( $j <= $number )); do
                        echo $j
                        printf $j + 1
                        (( j++ ))
                done
        (( i++))
        done

        declare stop=1
;;


which outputs:::
Code:
1
12
23
34
41
12
23
34
41
12
23
34
41
12
23
34
4

Any help would be much appreciated.

Last edited by Franklin52; 04-05-2010 at 02:48 PM.. Reason: Please use code tags!
# 2  
Old 04-05-2010
Here is how you can do it in ksh:

Code:
#!/usr/bin/ksh

echo -n " Now please enter a number 1-9 : "
read number
i=$number
while (( $i > 0 )); do

  j=$(( $number - $i + 1 ))
  k=1

  while (( $k <= $j )); do
    print -n "$k"
    k=$(( $k + 1 ))
  done

  print ""

  i=$(( $i - 1 ))

done

# 3  
Old 04-05-2010
Homework?
# 4  
Old 04-05-2010
The logic of your loop has something wrong.
A revisited version
Code:
# case $choice in
# 2)   
        echo -n " Now please enter a number 1-9 : "
        read number
        for ((i=1; i<=number; i++ ))
        do    OUT=""
            for ((j=1; j<=$i; j++))
            do    OUT+=$j
            done
            echo $OUT
        done
# ;;

# 5  
Old 04-05-2010
Thanks for your help.
And yes it was homework, I see now it should have been in the Homework section, sorry it was my first post, all apologies.
# 6  
Old 04-06-2010
It's not like it isn't stated in the Rules how to post homework...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash Menu using zenity

Hi, I'm new to bash, and have an example menu script using Zenity. It works fine if the user enters A B or C, but if the user enters nothing, I can only figure out how to exit the script. How do I get the menu to reappear if no input is selected? The script is: title="Select example"... (2 Replies)
Discussion started by: allen11
2 Replies

2. Shell Programming and Scripting

Creating bash script to process a data file based on the menu

Hey, im fairly new to unix and Im trying to make this unix project that would display a menu and do the following. MENU =========================== (p, P) Print users info (a, A) Add new user (s, S) Search user (d, D) Delete user (x,X) Exit Enter your choice: Trying to... (3 Replies)
Discussion started by: ultimaxtrd
3 Replies

3. Shell Programming and Scripting

Menu Driven Bash Shell Script with Default Option

Hi All, I have written a menu driven bash shell script. Current Output is as below: ------------------------------------- Main Menu ------------------------------------- Option 1 Option 2 Option 3 Option 4 Exit ===================================== Enter your... (3 Replies)
Discussion started by: kiran_j
3 Replies

4. Open Source

Bash menu not running

The perl command is not executing? I am trying to run the .pl in my cygwin home directory (C:\cygwin\home\cmccabe) using ${id}.txt.hg19_multianno.txt (located in the annovar directory) as the input file to be formatted and $FILENAME is the output file to be saved. The .pl is attached as... (8 Replies)
Discussion started by: cmccabe
8 Replies

5. Shell Programming and Scripting

Bash Script - Whiptail Menu Help!

Hello, Been trying to build a menu with whiptail lately. However, my code doesn't seems to be working even though when i compared to other similar code they looks the same. #!/bin/bash clear whiptail --msgbox "Entering networking sub-menu" 20 78 whiptail --title Networking --menu... (8 Replies)
Discussion started by: malfolozy
8 Replies

6. UNIX for Dummies Questions & Answers

Simple bash script menu

Dear Sir, May I know how do I go about adding the following feature into the script below: When user enter values other than 1,2,3,4, a) Message “Wrong entry !!! Pls select 1,2,3 or 4” is displayed b) The screen is cleared again and the menu is displayed. #!/bin/bash clear var=1... (2 Replies)
Discussion started by: fusetrips
2 Replies

7. Shell Programming and Scripting

get chosen value from bash menu

Hi again :) This is just a sample whiptail menu. Works great, but have been trying to get the chosen value into a variable but failing pretty bad...its ther but unsure how to echo it out when needed #! /bin/bash #This is the menu whiptail --title "Menu example" --menu "Choose an... (9 Replies)
Discussion started by: olearydc
9 Replies

8. Shell Programming and Scripting

Menu in Menu script issue

Problem: I am trying to create a menu in a menu script and I am running into an issue with the calculator portion of the script. I am first presented with the ==Options Menu== which all 5 options working correctly. Now comes the fun part. I select option 1 which takes me to my ==Calculator... (1 Reply)
Discussion started by: iDdraig
1 Replies

9. Shell Programming and Scripting

Execute interactive bash menu script in browser with PHP

I have an interactive menu script written in bash and I would like use PHP to open the interactive bash menu in a browser. Is this possible? Using the sytem() function in php runs the script but it's all garbled. Seems like maybe a terminal window needs to be opened in php first? ... (1 Reply)
Discussion started by: nck
1 Replies

10. Shell Programming and Scripting

Bash menu script

I have a main menu quit=n while do clear echo echo "1. General system information" echo "2. Hardware utilisation information" echo "3. File management" echo "4. User information" echo "5. Information on network connectivity" echo "6. Information on processes" echo "Q.Quit" ... (3 Replies)
Discussion started by: AngelFlesh
3 Replies
Login or Register to Ask a Question