Help on how to call a utility from script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help on how to call a utility from script
# 1  
Old 01-15-2008
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

pls can u help me on how to call any utility or program from script and read file for inputs.

Thks in adv.
# 2  
Old 01-15-2008
Suppose that you have a script like this:

#!/bin/bash
##blah
##blah
/path/to/utility
#more blah

In this case, your utility will ask for input from the user and your script will not proceed till your utility completes - the 'more blah' section will be run only after the utility exits. If you want to provide the input to utility, then do this:

/path/to/utility <<EOF
input 1
input 2
EOF

Sorry, you are using a text file, I missed that. Do this:

/path/to/utility < /path/to/txt_file
# 3  
Old 01-16-2008
Thks.I will try it & let you know.

/path/to/utility < /path/to/txt_file
input 1 ----is this step required?
input 2----is this step required?
EOF----is this step required?

I will write something like this. script based on ur advise as below.

xyz.sh
#! /bin/sh

/path/to/utility < /path/to/xyz.txt


xyz.txt will have
test (filename to be passed as a parameter)
01/01/2008
# 4  
Old 01-20-2008
Thks ,It worked.Now a some modification to script is required.Pls can you help.

Earlier i was reading from the txt file and giving inputs to the utility.
Now i need to create i.e write .txt file & then use this txt file to give the inputs to the directory.

Basically the txt file will be a calender creation. how to i do it.if

xyz.sh filename,frm_date,to_date,interval

where filename = .txt filename
frm_date=01/01/2008
to_date=02/15/2008
interval=2

so it should create a two month calender if interval is 2 then alternate day

if interval is blank it should be a daily calender i.e all days.
and the script should have date check of 30/31 day & leap year check.

Thks
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. UNIX for Advanced & Expert Users

which shell command or utility will call the net device driver?

Hi, all: Which shell command or utility will call the open(), close(), hard_start_xmit(), rtl8139_rx(), or interrupt() functions in a network device driver I am debugging? Can "ping", "ftp", "scp", or "internet browser" finally call them? Best regards! li, kunlun (0 Replies)
Discussion started by: liklstar
0 Replies

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

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

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

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

7. Shell Programming and Scripting

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 ..... (10 Replies)
Discussion started by: raghav1982
10 Replies

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

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