Need automated shell script please


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need automated shell script please
# 1  
Old 05-01-2008
Need automated shell script please

I'm totally new to shell scripting and I would like to ask your help

1.i want to have a .sh script where it runs opening 2 applications one after another

2.i have 2 applications in
/applications/app1
/applications/app2

3. want this script to launch app1 for 20 seconds and get killed and automatically run app2 for another 20 seconds and get killed
. these applications are OpenGL applications.

4. i have a demo tomorrow and i have to automate this by running the apps continously one after another

please IF you can give me the complete syntax of the .sh script for running this..it would be a great help for me...Thank you very much
# 2  
Old 05-01-2008
#!/bin/sh

/applications/app1 &
sleep 20;
kill $!;
/applications/app2 &
sleep 20;
kill $!;


paste this in a script and run this. hope this helps you.
# 3  
Old 05-02-2008
worked like a charm

worked like a charm,,thank you very much pradeep
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Try to learn automated shell script

Hi, i am new to shell script,i have a algorithm but i am not able to write script for this! we have to run one menu script for 100 times,in the first time we have to give options and after that execute. 1.enter option for write,in that we give address and data 2.enter the option for read,we... (1 Reply)
Discussion started by: y9ec629
1 Replies

2. Solaris

Run automated bash commands from sh login shell

I use plink.exe to automate remote commands that return data to Windows machines. This works well on newer servers running Red Hat since the commands were developed for bash and the designated user's login shell is bash. I need to also support older servers which are running Solaris 10 but the... (5 Replies)
Discussion started by: randman1
5 Replies

3. Shell Programming and Scripting

Automated scp using shell & expect

Hi All, I have written a script to automate scp of files. Most of the times it works fine except few cases. I want your help and suggestions to fix these failures. I have used expect & shell to do the automated scp. Below is code $ cat scp.ksh #!/bin/ksh inputfile=$1 fdest_sid=$2... (8 Replies)
Discussion started by: veeresh_15
8 Replies

4. UNIX and Linux Applications

How to write automated interactive shell script?

Hello everyone, I just want to write a shell script for automatic feeding the username and password prompts when running my commands, I tried this one but it did not work. Please help me for any way out. #!/bin/bash #!/usr/bin/expect cd ~/workspace/mimosanetworks_mimosa-nms ls -ltr ... (5 Replies)
Discussion started by: sandy-sm
5 Replies

5. Shell Programming and Scripting

Export data from database in Excel sheet with the help of Shell script and automated the report

Export data from database in Excel sheet with the help of Shell script and automated the report every day in the mornig. (1 Reply)
Discussion started by: neeraj617
1 Replies

6. Shell Programming and Scripting

Help with Automated Shell Script

Hello, how can I write a shell script that looks in running processes and if there isn't a process name containing 91.34.124.35 then execute a file in a certain place. I know PHP, in PHP I could do a preg_match_all but I don't know how to do it in shell. (5 Replies)
Discussion started by: nottingham
5 Replies

7. Shell Programming and Scripting

Automated logon within shell scripts

Hi All, I have created a server health checkup for 22 diferent ips and want to run my script from a single host server -->conduct health chekup on various servers--> Capture the deviations--> Get back all the deviations to the host server where the script was initiated. Ive checkd out ssh... (3 Replies)
Discussion started by: gemnian.g
3 Replies

8. Shell Programming and Scripting

How to automated the shell script

hye there... really need ur help... i have a file ./filename... then i want to make ./filename automatic run... for example: if someone send me a file using scp...then the ./filename will run automatically... did u guys get what i mean.... if not please ask me... cz i really need ur help... (29 Replies)
Discussion started by: annetote
29 Replies

9. Shell Programming and Scripting

How to make interactive shell script a automated one?

Hi, I am new to shell scripting.I have written a very simple shell scipt that asks for the username and password on executing. i.e echo "Enter username :" read usrname; echol "Enter password :"; read passwd; echo usrname; echo passwd; but now I want to make it automatic , such... (2 Replies)
Discussion started by: bhaskar_m
2 Replies

10. Shell Programming and Scripting

Need help for automated shell script

hi, I have a system with 3 O/S on it ( win 32, RHEL 4 32 & 64) I'm very new to shell scripting and I'm seeking for help in this matter.. I want to have an automated script on REDHAT that would run/open multiple applications one after other timed out at 20 seconds interval. Eg:... (4 Replies)
Discussion started by: uneex
4 Replies
Login or Register to Ask a Question