Writing a Utility Script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Writing a Utility Script
# 1  
Old 04-20-2008
Writing a Utility Script

Hi All ,,

I have couple of shell scripts .. I am trying to build a Utility script which would call each script

example ::
========

1) uni.sh
2) uni2.sh
3)uni3.sh

when i run the Util script it will come as a menu ,, once i press 1 it will call the first shell script and runs it .. Once this script is complete it should comeback to the same screen .. and when the user is pressing some wrong numbers apart from 3 it should prompt Invalid ID and comes to the same screen.. can any one help me on this !!!

Thanks!
# 2  
Old 04-20-2008
its easier.read the input number from screen and
just use if-elsif-else control or simple if - if -if control.
# 3  
Old 04-20-2008
Yes.. i need to do it using case command .

can anyone provide me a sample code to fix this !!

Thanks
# 4  
Old 04-20-2008
Which part do you have a problem with? Just use an endless loop which prints the menu, reads input, and acts on it.
# 5  
Old 04-20-2008
The following script is an bash example of select and case statements that can help you :
Code:
PS3='Choice ? '
COLUMNS=0

select choice in 'Pre-processing'  \
                 'Processing'      \
                 'Post-processing' \
                 'Exit'
do
   echo

   case "$REPLY" in
   1)   echo "Start script 1 ($choice)." ;;
   2)   echo "Start script 2 ($choice)." ;;
   3)   echo "Start script 3 ($choice)." ;;
   4)   break                            ;;
   *)   echo "Invalid choice ($REPLY)."  ;;
   esac

   echo
   REPLY=
done

Output example :
Code:
$ myscript.sh
1) Pre-processing
2) Processing
3) Post-processing
4) Exit
Choice ?<return>
1) Pre-processing
2) Processing
3) Post-processing
4) Exit
Choice ? 1

Start script 1 (Pre-processing).

1) Pre-processing
2) Processing
3) Post-processing
4) Exit
Choice ? Processing

Invalid choice (Processing).

1) Pre-processing
2) Processing
3) Post-processing
4) Exit
Choice ? 7

Invalid choice (7).

1) Pre-processing
2) Processing
3) Post-processing
4) Exit
Choice ? 4

$

Jean-Pierre.
# 6  
Old 04-20-2008
I understood the Flow .. Just when i need to call the shell , when we press 1

just add ../uni1.sh ?? will it work
Code:
PS3='Choice ? '
COLUMNS=0

select choice in 'Pre-processing'  \
                 'Processing'      \
                 'Post-processing' \
                 'Exit'
do
   echo

   case "$REPLY" in
   1)   echo "Start script 1 ($choice)." ;;
   2)   echo "Start script 2 ($choice)." ;;
   3)   echo "Start script 3 ($choice)." ;;
   4)   break                            ;;
   *)   echo "Invalid choice ($REPLY)."  ;;
   esac

   echo
   REPLY=
done


Last edited by Yogesh Sawant; 04-21-2008 at 05:31 AM.. Reason: added code tags
# 7  
Old 04-21-2008
Quote:
Originally Posted by raghav1982
just add ../uni1.sh ?? will it work
Did you even try it?

Add /full/path/to/uni1.sh as shown:

Code:
[...]
case "$REPLY" in
1) echo "Start script 1 ($choice)." ; /full/path/to/uni1.sh;
[...]

That will echo out your chice to the command line and thenm call your uni1.sh script. It is good practice to add your full path in case the outer script is called from a different location.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script to automation utility app

Hi All, Am trying to write a shell script to automate one of the product utility but am struck with how to send/key in the inputs and most importantly it requires to press "Enter" key every time after giving the input. Not sure how to take control of utility from script and key in... (1 Reply)
Discussion started by: Optimus81
1 Replies

2. Homework & Coursework Questions

script similar to rm utility

1. The problem statement, all variables and given/known data: saferm is a replacement for the rm utility. Rather than removing files, it move files in a sub directoy called".saferm" in the user's home directory. If "~/.saferm" doesn't exist, it is automatically created. The -l options lists the ... (3 Replies)
Discussion started by: Joey12
3 Replies

3. Shell Programming and Scripting

Using sendmail utility in K Shell script

Hi, I am new to shell scripting and thus any help will be highly appreciated. I need to write a K shell script where in the email sending feature should be handled by sendmail utility and I have come up with the following : #!/usr/bin/ksh echo "This is a test mailest mail" | /usr/lib/sendmail... (4 Replies)
Discussion started by: sdiptanil
4 Replies

4. Shell Programming and Scripting

I need help to run this utility from a shell script

I need some help to run this executable from within a shell script. The Script is run the following way at the command prompt. $rateupd Main Menu --Standard Output ----------- --Standard Output 1. - Update Rate --Standard Output 2. - Exit. --Standard Output Enter Selection: 1 --User... (5 Replies)
Discussion started by: rajeeb_d
5 Replies

5. Shell Programming and Scripting

script not working...select utility

#!/usr/bin/bash name="$@" myname=malay #echo $myname select firstname in $name; do if ;then echo $firstname else break fi done invoking with:- ./script.sh one two three four five six seven eight nine malay (6 Replies)
Discussion started by: mobydick
6 Replies

6. Shell Programming and Scripting

Help on how to call a utility from script

Hi, I am new to shell scripting (sh) I need a script which will call a utility & once u call it.It will ask for inputs on the screen.These inputs it needs to get or read from a txt file. for e.g #! /bin/sh while read line do echo $line done txt file will have test 01/01/2008 ... (3 Replies)
Discussion started by: innocent
3 Replies

7. UNIX for Dummies Questions & Answers

Need help on SCRIPT(1M) utility

Hi All, I need to do a lot of manual entries at shell prompt. So to collect the logs(each command fired in that session, i use "SCRIPT(1) : make typescript of terminal session" this is kool,but the problem here is that it saves the linefeed, and backspaces along with the commands in the log... (1 Reply)
Discussion started by: amit4g
1 Replies

8. Shell Programming and Scripting

How to write DB2 Load Utility in Shell script

Hi, I am a beginner. I need an example of using DB2 Load Utility in Shell script. I appreciate if anyone could help me about it. Thanks, Paris (0 Replies)
Discussion started by: parisbeginner
0 Replies

9. Shell Programming and Scripting

sort utility in script ?

Hi friends, I want to use sort command in script. I used the following syntax in my scipt, sort -t '|' +3 tempcdrext4.cdr > temp.mocdr It give me a error " Input file specified two times." but this command work fine in the prompt without any problem. Can sombody please tell me who... (2 Replies)
Discussion started by: maheshsri
2 Replies

10. Shell Programming and Scripting

cdrdao utility script

friends, i love ya... i wrote a script to automate using cdrdao to burn an audio cd from mp3 files, using the great tutorial at http://tldp.org/HOWTO/MP3-CD-Burning/index.html (check out the site, i believe that it's very well-written). i messed around with it and got to a place where i felt... (2 Replies)
Discussion started by: snwright
2 Replies
Login or Register to Ask a Question