Topic: Oracle on Unix/Linux >> shell script command
|
Disclaimer: The purpose of all dbapool forums including OCP and Other Oracle Certification forums is to help each other with specific issues but not to share dump and copyrighted exam content, materials or intellectual property.
You may review the entire Oracle Certification Program Candidate Agreement online Here.
|
|
|
|
| Title: shell script command |
| lg123 |
Posted: Apr 11, 2008 04:03:27 AM |
Total Post: 5
Joined: Dec, 2007
|
Hi
I have a text file named information.txt which contains information about Oracle Instances, I want to fetch data's from that text file and want to display an output using shell script.
i.e. when I execute that shell script ,it should read all data's from information.txt and display an output like below.
I willl try explain with an example...
Say i have a file "file" containing..
Instance : DB1,windows
Instance : DB2,unix
Instance : DB3,solaris
Instance : DB4,unix
;;;;;;;;etc
so... my shell script should read the file and display output as
DB1,windows,OK
DB2,unix,OK
DB3,solaris,OK
DB4,unix, OK
;;;;; etc
How do I write this script? Can you tell me ..which command wud be appropriate? |
|
|
Gitesh |
| Posted: Apr 11, 2008 11:32:56 PM | |
|
Total Post: 322
Joined: May, 2005
|
First let us know what is the meaning of "OK"? Then we can help to make script.
|
|
|
|
|
positive |
| Posted: Jun 26, 2008 01:07:36 PM | |
|
Total Post: 416
Joined: Jun, 2008
|
Hi,
Looks like you have to read the shell script line by line to check for the parameter passed in commandline argument.
Say information.txt has
database1 : db2,unix
database2 : oracle,windows
cat information.txt|for var in line
do
find ./ -name $var -print > my.log
done
This logic can work.
|
|
|
|
|
| Time Zone: EDT |
Send this thread to your friend |
|
|
|
|
Forum Rules & Description
Who Can Read The Forum? Any registered user or guest
Who Can Post New Topics? Any registered user
Who Can Post Replies? Any registered user
|
| |
Get FREE Magazines
|
Top 10 Forum User
|
| Murtuja Khokhar | 816 |
| Mohammed Taj | 704 |
| Jayanta Sur | 479 |
| positive fanatic | 416 |
| Vigyan Kaushik | 386 |
| Gitesh Trivedi | 322 |
| Gopu Gopi | 242 |
| neeraj sharma | 231 |
| Ramesh Jois | 226 |
| Bishal Khetan | 196 |
|
|