Help needed in writing a menu driven script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help needed in writing a menu driven script
# 1  
Old 05-16-2011
Help needed in writing a menu driven script

Hi, I was wondering if someone could help me write a shell script in Linux that backsup/restores data to anywhere I choose but it needs to be menu driven?

Thanks, I'm new to Linux/Unix but liking it so far...just hoping to get to grips with the scripts! Smilie
# 2  
Old 05-16-2011
For menus i recommend case with while true
Use trap, log shell function and break for complete control of user input (readers curiositySmilie)
Code:
while true
do
clear
## display part
printf "This is a menu
	a) run command a
	b) run command b
	\n"
read ANSWER
	case $ANSWER in
## Execution part 
	a) tar cf home.tar /home/user ## or whatever you wish to execute.
	;;
	b) tar xf home.tar /home/user
	;;
	*) printf "fail \n" ; sleep 1
;;
esac
done

# 3  
Old 05-16-2011
For automating backup, it might be usefull (but ok it is not a menu-driven stuff) : the shell built-in function : getopts

Otherwise, (for menu-driven oriented stuff, you may want to know about select but that one is specific to the Korn Shell)

Last edited by ctsgnb; 05-16-2011 at 02:56 PM..
# 4  
Old 05-17-2011
Thank you! Smilie

IS there also a way to check that only valid choices are made? Sorry if I'm being a pain! Brand new to me all this! Also, is there a way to include the date of the backup in the name?
# 5  
Old 05-17-2011
Code:
[...]
case $ANSWER in
"choice1")
    <whatever command>
    <whatever command>
    ...
;;
"choice2") 
    <whatever command>
    <whatever command>
    <whatever command>
    ...
;;
*) 
    echo  "Bad choice, the only possible choices are choice1 or choice2"
    exit 1
;;
esac
[...]

# 6  
Old 05-17-2011
Quote:
Originally Posted by ctsgnb
Code:
[...]
case $ANSWER in
"choice1")
    <whatever command>
    <whatever command>
    ...
;;
"choice2") 
    <whatever command>
    <whatever command>
    <whatever command>
    ...
;;
*) 
    echo  "Bad choice, the only possible choices are choice1 or choice2"
    exit 1
;;
esac
[...]

Thank you. Smilie

What about the date thing? Is that possible? I know I'm being a pain! Can I use the excuse that I'm a girl? Smilie
# 7  
Old 05-18-2011
Quote:
Originally Posted by Nicole
Thank you. Smilie
What about the date thing? Is that possible?
Could you please give more clue ?
also refer to this thread : https://www.unix.com/answers-frequent...rithmetic.html

Quote:
Originally Posted by Nicole
Can I use the excuse that I'm a girl? Smilie
Maybe you have been told by some people that girl are supposed to be inferior to men : sorry but i totally disagree with that, i would even say that they are stronger and more wise as well because they know the price of the life. I am sure this world would not go as bad as it currently does, if it were governed by girls.
So ...to answer your question : Sorry , i don't take it as an excuse. Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Using menu driven script

Hi Team , I wrote a shell script for adding and subtracting two numbers am getting error could some one please help to fix it script: echo "Enter 1 to add:" echo "Enter 2 to sub:" echo "Enter 3 for both addition and subtraction :" read ans; case "$ans" in 1)... (4 Replies)
Discussion started by: knz
4 Replies

2. 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

3. Shell Programming and Scripting

Execution Problem with dispalying file content using menu driven script

HI All.. below is my menu options script. in option 2,3 and 4 im giving input and they are saving into their respective text file. problem is when im trying to "cat" those files in options 7,8 and 9 im not getting the output. no respective file contents are displaying on screen. but if i... (1 Reply)
Discussion started by: saichand1985
1 Replies

4. Shell Programming and Scripting

Use of stty vs trap in script-driven login menu

My employers would like me to selectively run one of several different (already-existing) Korn Shell menu-driven scripts out of the user's .profile file, depending on some yet-to-be-specified user critieria. I've never done this kind of thing, but I have the existing scripts (among other... (5 Replies)
Discussion started by: Clovis_Sangrail
5 Replies

5. Shell Programming and Scripting

Menu driven script.

I'm a beginner at scripting and have been putting this script together over the past week. It's no where as polish as it could be. Any tips/suggestions on improving this script would be appreciate it. Every week, my team develops WAR files in tomcat on our test environment and moves them to our... (4 Replies)
Discussion started by: bouncer
4 Replies

6. UNIX for Dummies Questions & Answers

What is a menu or command line option driven script?

i'm confused what this means. i was asked to design a menu or command line option driven script that reads out of a DB and displays info such as read_data.pl -u <user> -e <event> which would print commands run by <user>with the <event> in the db. any suggestions? i've been using... (2 Replies)
Discussion started by: kpddong
2 Replies

7. SuSE

Write shell script using menu-driven approach to show various system

QUESTION: Write shell script using menu-driven approach to show various system configuration like 1) Currently logged user and his logname 2) Your current shell 3) Your home directory 4) Your current path setting 5) Your current working directory 6) Show Currently logged number of... (1 Reply)
Discussion started by: bboyjervis
1 Replies

8. Shell Programming and Scripting

Menu driven Script needed ..pls help

Hi Guys.. am new to unix scrpiting..I need a Menu need to create using shell scrpting eg: Food items ready paid if i press "f" need to add items for a file food items.. if i press "r" it need to move into ready and remove from food items if i press "p" need to update a filed in... (1 Reply)
Discussion started by: sasdua
1 Replies

9. Shell Programming and Scripting

Assigning values to reference variables for a dynamic menu driven script.

How do I assign values to reference variables? I am assigning a variable name to --> $user_var Then I am trying to change its underlying variable value by $((user_var))=$user_value .. its failing,, Please let me know if there is a way to do this dynamically.. FileA.props... (5 Replies)
Discussion started by: kchinnam
5 Replies

10. Homework & Coursework Questions

Menu Driven Shell Script which accepts1 to 5 options

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: 1) Write a Menu Driven Shell Script which accepts1 to 5 options and performs the following actions for... (1 Reply)
Discussion started by: vaghya
1 Replies
Login or Register to Ask a Question