Input to shell script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Input to shell script
# 1  
Old 03-31-2006
Input to shell script

Hi,
I have 10 database instances runnning in one unix box. To connect to each database..i have to set the environment. I am trying to write a shell script to set my environment for database by just tying the oracle instance name


After logging into the unix machine... i want to type the oracle instacne name and the environment needs to be set for the typed oracle instance

How to pass an oracle instance name typed in the console to the shell script

any idea? how to do this

Is there any other way to do?


$/u01/oracle/ORACLEINSTANCENAME

Script:

FILE_LOCATION=/etc/oratab

dbname=awk 'BEGIN{FS=":"}{print $1}' < "$FILE_LOCATION" )
do
#echo "USER #$n = $dbname"
echo $dbname
if [$dbname= passed_db_name]
export ORACLE_SID=dbname
done



Many Thanks,

Last edited by castlerock; 03-31-2006 at 11:59 AM..
# 2  
Old 03-31-2006
I'm not sure I'm following you a 100% but here is what I think your trying to do. You can manual call this script or put it in your .profile so it starts when you log in. Hope this helps.


#!/bin/ksh
FILE_LOCATION=/etc/oratab

cat $FILE_LOCATION | awk -F: '{print $1}'
print "Chose instance to set environment"
read option

case $option in
"first_instance")
export ORACLE_SID=first_instance;;
"second_instance")
export ORACLE_SID=second_instance;;
"third_instance")
export ORACLE_SID=third_instance;;
esac
print "ORACLE_SID=$option"
exit
# 3  
Old 03-31-2006
Thanks for the script....

What i am looking for is... after loging to unix machine if i type type the instance name and it has to set the oracle environment.

Many thanks,
# 4  
Old 04-03-2006
Not sure if I understand exactly what you are trying to do, but if you want a single script to run to set the environment for any of your 10 Oracle instances then how about something like:

Code:
#!/bin/ksh
FILE_LOCATION=/etc/oratab
INSTANCE=$1
export ORACLE_SID=$INSTANCE
export any other variables, path etc evaluated from parameter or 
  conditional e.g. case statement setting values depending on the
  instance name...
Print "Environment set for $INSTANCE"

To get variables into the environment you need to source (run using the syntax <dot><space><scriptname>) the script (called 'oracle' in the example below) and pass the instance name as a parameter. It's up to you what (if any) validation you need to ensure that the database name is valid.
Code:
. ./oracle live

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Read input in shell script

I want to write a script that read the input to variable. I want the input screen to have 2 lines, where the values already input will appear above the input line for example if I want to input the words below: like love live life The screen will display like this: 1. Before any input... (8 Replies)
Discussion started by: aydj
8 Replies

2. Shell Programming and Scripting

Shell script password input

hy, I wrote a simple shell script to monitor (with Nagios) a SNX VPN function. Here the Code snippet: testing=`ssh user@IP-address 'ls /etc/sysconfig/network-scripts/ifcfg-eth0'` #echo $testing if ; then echo "VPN is working" exit 0 else snx -s server -u user ... (2 Replies)
Discussion started by: tomies
2 Replies

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

4. Shell Programming and Scripting

Input in shell script

Hello! Need help with the following: #!/bin/bash streamripper http://mp3-live.swr.de/swr2_m.m3u -D ~/RadioMitschnitt -l 200 > /dev/null 2>&1 I want to change the script so that it asks for an input for "-l 200" (means length 200sec) and starts then with the new value for "-l". Can I do this... (2 Replies)
Discussion started by: urug3170
2 Replies

5. UNIX for Dummies Questions & Answers

How to take input from excel for shell script.

i have both linux and windos installed on my pc . i want to take 1st column of excel as in input for my shell script .can anyone tell me how can i achive that. (1 Reply)
Discussion started by: nitin_aaa27
1 Replies

6. Shell Programming and Scripting

shell script with input

Hi all, Here is my shell script #!/bin/sh echo "What is your name" read name echo "What is your surname" read surname echo "Your name is:${name} and your surname is:${surname}" How can I modify this script so that I input those two variables from console?Lets say my name is "first"... (3 Replies)
Discussion started by: c0mrade
3 Replies

7. Shell Programming and Scripting

Shell script getting input from output

I have a program that can be run in terminal, when its run it either returns SSH OK or CRITICAL, how do i use the output in my script? good ./check_sh myserver SSH OK bad ./check_sh myserver CRITICAL I want to store it in a variable btw, SSH OK will give the variable $SSH=1 and if its... (1 Reply)
Discussion started by: aspect_p
1 Replies

8. UNIX for Dummies Questions & Answers

Shell script with input parameter

Can anyone help me how to write a shell script which accepts input parameter. My requirement is as follows: I need to run a shell script with a input parameter, and inside the script i will create a file with this input parameter name. Please help me out to create such a shell script. ... (1 Reply)
Discussion started by: jhmr7
1 Replies

9. UNIX for Dummies Questions & Answers

Masking input in a shell script

How do I prevent user input from being displayed in running script (e.g. when entering a password)? Thanx, Aaron (2 Replies)
Discussion started by: Spetnik
2 Replies

10. Shell Programming and Scripting

single input shell script?

hey, i'm trying to write a shell script which accepts: operand operator operand then, the script would see which operator it is (using case) and calculate it... but i dont know how to do it correctly with $1 $2 $3... (eliminating accepting separate inputs) (1 Reply)
Discussion started by: quipy
1 Replies
Login or Register to Ask a Question