Giving Input in a script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Giving Input in a script
# 1  
Old 01-14-2012
Giving Input in a script

Hi,

I am a newbie to scripting. I want to know something..Is there any way that I can do this?

Here is the thing.. there are so many printer queues in which i need to change a certain option.. am using the hppi utility and i need to modify the printer configuration individually going to each printer and change ...
What I am doing right now is :
hppi, then entering option 1, then entering option 3 to modify the settings, giving the printer queue name and then changing the parameter.

What i want to know is :
Is there any way that I can enter the values 1 and 3 and the printer name in a script?? Then I would select the setting, change it ??

Thanks in advance ... Smilie
# 2  
Old 01-14-2012
You can programatically answer program prompts, in a script this is called a here document:
I have not used hppi, so I don't know what you mean by select. Once you start a here doc, ALL of the answers have to be pre-programmed. I'll create something for you to work with - YOU need to change it.
Code:
#!/bin/ksh
# set_pr.sh
# $1 == printer name
# $2 == printer setting to select  
hppi << EOF
1
3
"$1"
"$2"
EOF

execute
Code:
chmod +x set_pr.sh

so you can run the script

usage: ./set_pr.sh printer34 OptionA

If you need help with changing the script let us know.
This User Gave Thanks to jim mcnamara For This Post:
# 3  
Old 01-16-2012
Thanks Jim..that worked Smilie
Have another problem here... As i said, there are a lot of inputs that we need to give..if it doesn't get an input it seems to going into an infinite loop..is there any way to stop it??
# 4  
Old 01-17-2012
hi.. try this...

Code:
if [ $# != 2 ]
then
        echo "incorrect number of arguments. Exitting !!!"
        exit 1;
fi

$# = the number of arguments that you are passing in the script.
here i have considered that i have only 2 arguments passing..
If there are say 5 arguments, the condition will look like -

Code:
if [ $# != 5 ]
then
        echo "incorrect number of arguments. Exitting !!!"
        exit 1;
fi

so the final code will be as follows :

Code:
 
#!/bin/ksh
# set_pr.sh
# $1 == printer name
# $2 == printer setting to select  
if [ $# != 5 ]
then
        echo "incorrect number of arguments. Exitting !!!"
        exit 1;
fi
hppi << EOF
1
3
"$1"
"$2"
EOF

If the desired number of arguments are not entered, the shell will quit stating this error:

Code:
sh set_pr.sh
incorrect number of arguments. Exitting !!!

Regards,
A!
This User Gave Thanks to archimedes 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

Script to delete files with an input for directories and an input for path/file

Hello, I'm trying to figure out how best to approach this script, and I have very little experience, so I could use all the help I can get. :wall: I regularly need to delete files from many directories. A file with the same name may exist any number of times in different subdirectories.... (3 Replies)
Discussion started by: *ShadowCat*
3 Replies

2. Shell Programming and Scripting

giving input without manual intervention

Hi all, I am looking for a specific requirement. I am trying to create a wrapper over a set of shell scripts. Some shell scripts wait for user inputs. These inputs may not be same format. And will be spread across multiple files. In short a set of scripts are going to be run on another set... (1 Reply)
Discussion started by: krk1729
1 Replies

3. Shell Programming and Scripting

Giving automatic multiple Input to a tool from shell script

Hi, Please help me,its urgent. I have a tool that i want to run from a shell script. When we run the tool it will ask the user choice to add or delete. When user enter the choice it will then ask how many units he want to delete or add and will add or delete accordingly. Now I want to... (1 Reply)
Discussion started by: saket18@ymail.c
1 Replies

4. Shell Programming and Scripting

giving input to a python wch has been called frm shell script....urgent

i'm calling a python script from shell script. the python needs Y as an input everytime. how can i giv it thru shell script. I tried below code for arg in `cat erd_gen_list.lst` do generateErdSql.py -S $arg << Y done This is giving me err : `<<' unmatched pls help. (1 Reply)
Discussion started by: vini
1 Replies

5. UNIX for Dummies Questions & Answers

AWK command giving wrong input

Hi all, I have a problem with qwk command. i have to check process status and for that i am using command prstat -mvL 1 1 and it gives me the entire output but when i use this command with awk like this: prstat -mvL 1 1 | awk -F" " '{print $1,$15}' to get first and 15th arguments. ... (3 Replies)
Discussion started by: usha rao
3 Replies

6. Shell Programming and Scripting

Giving input to a c++ file

My C++ program creates a nxn matrix with given value. For e.g if the input is 10 it will creates a matrix of 10x10 now what i want is the script should run program and give input values in a variation of 1000. Say first matrix of 1000 then 2000 , 3000 ..... 10000. I tried using for loop but unable... (2 Replies)
Discussion started by: tonyaim83
2 Replies

7. Shell Programming and Scripting

Giving input to a script through a script

/home/adw/a.ksh << EOF a b EOF This is how we give input to a file through script Our client has done the coding in a different way :- /home/adw/a.ksh << ** a b Can nybody pls tell me the significance of ** (7 Replies)
Discussion started by: radhika03
7 Replies

8. Shell Programming and Scripting

Giving input through script

Script 1.ksh ========= /home/adw/a.ksh << ** a b Script 1.ksh is working fine even without ending "**" Script 2.ksh ========= if then /home/adw/a.ksh << ** a b fi But the script 2.ksh is giving error "syntax error : `<<' unmatched". Is it bcoz of fi. (1 Reply)
Discussion started by: radhika03
1 Replies

9. Shell Programming and Scripting

Giving "read" from standard input a timeout.

I want to prompt a user for input but I want it to timeout after a specified time if no response is given. I tried the sleep command but this does not work. I am using ksh. Thanks. (10 Replies)
Discussion started by: rello
10 Replies

10. UNIX for Dummies Questions & Answers

Backup is giving me input/output error

I've been successfully running a daily cron script to backup certain things on my server but just recently I started getting input/output errors for everything. For each directory the script tries to backup I now get this: cp: accessing `/mnt/backup/**dir**/': Input/output error (8 Replies)
Discussion started by: JPigford
8 Replies
Login or Register to Ask a Question