Script that accepts user input - Suggestions


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Script that accepts user input - Suggestions
# 1  
Old 06-10-2009
Script that accepts user input - Suggestions

Hi,

I have a series of BASH shell scripts that process data. All of the scripts are controlled by a "master" script, where users specify their processing parameters. The sub-scripts, and the order they are called, depend on the values of these user-specified processing parameters. This method has worked well thus far. However the more features I add to my scripts, the less straight-forward the master script becomes. These scripts are distributed to users who likely do not have much unix experience, so being user-friendly is a must.

- Does anyone have any suggestions on other methods to accomplish what I described above?

- I have thought of two: 1) a GUI, 2) a prompt.

The GUI is ideal, but I must learn Python first.

Regarding a prompt, I imagine the following: A user types the name of my software and is asked a question (ie. what type of processing do you wish to do?). Depending on how that question is answered a different question is asked. All of the user responses are saved to a text file which would 1) function as the master script I described above, and 2) function as a processing log so that the user could keep a history of the choices he/she selected.

Can anyone suggest where I should start looking to learn how to do this?

Thanks!

Mike
# 2  
Old 06-10-2009

Without knowing more about it, I'd recommend using a menu system -- easily written in shell scripts.

You might look at dialog or its cousins, cdialog, xdialog, zenity.

Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk programming- accepts condition from user

I have an assignment, need your help to complete it. I am trying as well from my end but need help to complete. emp.csv (contains emp details, say 5k records) empid,ename,sal,comm 100,Patrick,75000,10 200,Lisbon,80000,5 300,Van,50000,null 400,Wayne,65000,2 500,Kimball,70000,7 ... (1 Reply)
Discussion started by: Arpita_pop
1 Replies

2. Shell Programming and Scripting

Help Me. The script should not exit until the user gives an input.

Hi everyone, I'm new here and just a beginner in linux scripting. Just want to ask for help on this one. I am trying to create a script that will accept user input (year-month and user/s). I wanted to have the script to continue running, until the user inputs a DATE and name/s of user/s. ... (2 Replies)
Discussion started by: Helskadi
2 Replies

3. Windows & DOS: Issues & Discussions

Validation in user input in batch script

I need to insert the validation in my batch script.When user enter the value it should be numeric+minimum length should be 2 for e.g. 02,03 if he puts 1a,1A,2a3 t hen should print the message that it is wrong and print te message enter valid value. Echo RC is in format of 02 set /p... (2 Replies)
Discussion started by: anuragpgtgerman
2 Replies

4. Shell Programming and Scripting

Script interacts with user , based on user input it operates

i have a script which takes input from user, if user gives either Y/y then it should continue, else it should quit by displaying user cancelled. #!/bin/sh echo " Enter your choice to continue y/Y OR n/N to quit " read A if then echo " user requested to continue " ##some commands... (7 Replies)
Discussion started by: only4satish
7 Replies

5. Shell Programming and Scripting

How to take input from user or awk script?

Hi Jim, I have following script,i which i need to take dynamic value . script, nawk -v v1=grep"INT_EUR" $propertifilename | cut -d"=" -F2` -F'~' '{if (NF-1 !=v1) {print "Error in " $0 " at line number "NR" tilde count " N-1}}' $filename In the above script i want to use INT_EUR as a variable... (2 Replies)
Discussion started by: Ganesh Khandare
2 Replies

6. Shell Programming and Scripting

User Input Shell Script

Hello I am trying to create a user input shell scipt. The objective is user should enter the circuit number and the input is saved in a log file. If the user does not enter anything then the question should prompt it until the circuit no. is entered. Can any one please correct the code below.... (3 Replies)
Discussion started by: sureshcisco
3 Replies

7. Shell Programming and Scripting

User input for execution of script

Hi, I need to get the user input and execute a particular script based on the input provided. For E.g. When I execute the script say Test.sh it should prompt "For which country I need to execute the script? (US/India)" Based on the input as US or India from the user the execution of... (8 Replies)
Discussion started by: yoursdavinder
8 Replies

8. Shell Programming and Scripting

exit script if user input not four characters

#!/usr/bin/bash ###script to input four characters. wxyz echo "input first string" read instring1 echo "input second string" read instring2 ## echo "first string is:" $instring1 echo "second string is:" $instring2 ##IF instring1 or instring2 are NOT 4 characters (xxxx) , exit 1. ##how?? ... (2 Replies)
Discussion started by: ajp7701
2 Replies

9. Shell Programming and Scripting

Suggestions on input

Hi, I have written a script which calls a process which ends up in a reboot of the system. At the end of the reboot it prompts for login & i need to provide the login details. am not able to figure out hw to do this. Doubt: will echoing login details after calling the process work? for ex:... (1 Reply)
Discussion started by: meera
1 Replies
Login or Register to Ask a Question