Sponsored Content
Top Forums Shell Programming and Scripting Required Shell script for My requirement Post 302191097 by ntgobinath on Thursday 1st of May 2008 01:36:16 PM
Old 05-01-2008
Question Required Shell script for My requirement

Hi All,

I joined today in this forum to have all of your help.

I have a Big requirement, pls. help me to resolve.

I'm using HP-UX 11.23. I need a shell script for the following requirement.

I have a file (nodes.txt) that contains 1000 nodes.

I'm running the following command:
/opt/OV/bin/ovet_topodump.ovpl -nodeif <node name> -detail

(Pls. note <node name> field should take nodenames from the nodes.txt, this field should be replaced by next node name once the command completed for the first node)

Here is the result for one node result:
#/opt/OV/bin/ovet_topodump.ovpl -nodeif dall00r1.mis.amat.com -detail
++++++++++++++++Node+++++++++++++++++++++
NodeName: dall00r1.mis.amat.com
IPProtocolSupported: IPv4
ObjID: 004e510a-0d92-71dd-1512-9887a1f10000
OADId: 0
SysOID: 1.3.6.1.4.1.9.1.544
SysContact:
SysLocation:
Description: Cisco IOS Software, 3800 Software (C3845-ADVIPSERVICESK9-M), Versio
n 12.4(11)T2, RELEASE SOFTWARE (fc4)
Technical Support: Cisco - Shortcut
Copyright (c) 1986-2007 by Cisco Systems, Inc.
Compiled Tue 01-May-07 00:55 by prod_rel_team
Status: Minor
Capability: isLanSwitch isIPv4Router isCDP isBGP isMulticast isSnmpSupported
++++++++++++++++Management Address+++++++++++++++++++++
AddressType: IPv4
ObjID: 004ee4e4-0d92-71dd-1512-9887a1f10000
Address: 152.135.0.61
PingState: Ping Responding
----------------Management Address---------------------
++++++++++++++++Interface+++++++++++++++++++++
IFName: dall00r1.mis.amat.com[ 0 [ 2 ] ]
ObjID: 0155c646-0d92-71dd-1512-9887a1f10000
IFAlias: -
IFDescription: GigabitEthernet0/0
Status: Normal
IfIndex: 2
IfType: 6
AggregatedInterfaceObjID: -
Capability: isL2Connected isCDP
----------------Interface---------------------
++++++++++++++++Interface+++++++++++++++++++++
IFName: dall00r1.mis.amat.com[ 0 [ 1 ] ]
ObjID: 0bb25a50-0d92-71dd-1512-9887a1f10000
IFAlias: Dest:AT&T MPLS CLOUD Type: ISP T1 CID:
IFDescription: Serial0/1/0
Status: Normal
IfIndex: 1
IfType: 23
AggregatedInterfaceObjID: -
Capability: isCDP isMulticast
++++++++++++++++Address+++++++++++++++++++++

My Requirement: Output should be....
1. Node name should be placed in First column.
2. Should have extra four columns (ObjID, Address, IFDescription, Status) and collect the same info from the command result.
(Now total column is 5)

Conditions:
1. ObjID is unique. If the ObjID does not have Adress that column should be balnk. The same way, if IFDescription, Status not available that columns should be blank.
2. Once first ObjID completed then next ObjID should be written in next row and do the same operation.

Result should be like follow:

NodeName ObjID Addresss IFDescription Status
dall00r1... 004e510a-...
004ee4e4-... 152.135.0.61
0155c646-... GigabitEthernet0/0 Normal
0bb25a50-... Serial0/1/0 Normal


(I marked ... because the information is long)

Once it finish for one node then it pass to next node in loop which is there in nodes.txt.

I know it's pretty much work needed. Pls. help me to get this script....

Thanks,
Gobinathan.S
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

shell script required

hi , i need a shell script that will remove the first and second lines of the text file and will list the word count of the characters present in it. the text file will be consisting of multiple textfiles.the first text file starts from 01-34.like wise the next file also starts from 01-34... (4 Replies)
Discussion started by: sethunath
4 Replies

2. Linux

shell script required

Hi, iam presenting the input text file format.Of this i need the character count of the number of characters present in each file.The attached file is a combination of 3 text file.each text file starts at record 1 - 34, then the next tetx file starts. What i need is the character count of each... (1 Reply)
Discussion started by: sethunath
1 Replies

3. Shell Programming and Scripting

Shell Script Required!

Hi people, I am new to this forum. I have taken unix this semester in my college and i am new to it. I am finding shell scripting a bit hard and i need a little help. I require a shell script to delete files that end as .bak , .BAK, #, ~ and files with the name core.The Script should accept... (3 Replies)
Discussion started by: vats
3 Replies

4. Shell Programming and Scripting

Shell Script Required

I have following information in one file. ObjID: 004ee4e4-0d92-71dd-1512-9887a1f10000 Address: 152.135.0.61 PingState: Ping Responding ----------------Management Address--------------------- ++++++++++++++++Interface+++++++++++++++++++++ IFName: dall00r1.mis.amat.com ] ObjID:... (3 Replies)
Discussion started by: ntgobinath
3 Replies

5. Shell Programming and Scripting

Shell script help required

Hi, Can someone help me with this small piece of code. DIRNAME=$(dirname $0) BASENAME=$(basename $0) DATA="${DIRNAME}/${BASENAME}.data" && . $DATA whats is meant by && . $DATA here... Regards, Abhishek (2 Replies)
Discussion started by: max29583
2 Replies

6. Shell Programming and Scripting

Shell script is required

Dear All I have a filelisting as below: abcd_20110715_0007 abcd_20110715_0010 abcd_20110716_0001 abcd_20110716_0004 abcd_20110715_0008 abcd_20110715_0011 abcd_20110716_0002 abcd_20110716_0005 abcd_20110715_0009 abcd_20110715_0012 abcd_20110716_0003 abcd_20110716_0006 ... (3 Replies)
Discussion started by: at1700
3 Replies

7. Shell Programming and Scripting

help required with shell script

Hi, My input file as follws $ cat 1.txt ------- a aa aaa 11 b bb bbb 22 I am able to extract first and last column of a given line as follows. $ nawk '{print $1}' FS= RS= 1.txt | awk '{ $NF = ""; print }' a $ nawk '{print $1}' FS= RS= 1.txt | awk '{ print $NF}' 11 however, the... (4 Replies)
Discussion started by: bala123
4 Replies

8. Shell Programming and Scripting

How to write bash shell script for mentioned requirement?

Hi All, I am unable to write the script for the below requirement. Requirement: Main table dir_ancillary table contain three column "dir_ancillary.table_name"," dir_ancillary.text_file_name ", "dir_ancillary.Include" . This dir_ancillary contain undefined tables in the column... (2 Replies)
Discussion started by: Vineeta Nigam
2 Replies

9. UNIX for Dummies Questions & Answers

Shell script required

Hi, I need shell script for getting the date in format from below text output IP IS 10.238.52.65 pun-ras-bng-mhs-01#show conf port 2/4 Building configuration... Current configuration: ! card ge3-4-port 2 ! port ethernet 2/4 no shutdown encapsulation dot1q (7 Replies)
Discussion started by: surender reddy
7 Replies

10. Shell Programming and Scripting

Writing if condition in shell script and failing to do requirement

Hi, I am trying to edit the values in a file. For example i am trying to edit the value of "ABC" in a file by executing shell script. Please Note that ABC value can be there mulitple times or it may not be there in the file Conditions for it is 1. If ABC is less than 123 then it should... (14 Replies)
Discussion started by: darling
14 Replies
ct_slave(3erl)						     Erlang Module Definition						    ct_slave(3erl)

NAME
ct_slave - Common Test Framework functions for starting and stopping nodes for Large Scale Testing. DESCRIPTION
Common Test Framework functions for starting and stopping nodes for Large Scale Testing. This module exports functions which are used by the Common Test Master to start and stop "slave" nodes. It is the default callback module for the {init, node_start} term of the Test Specification. EXPORTS
start(Node) -> Result Types Node = atom() Result = {ok, NodeName} | {error, already_started, NodeName} | {error, started_not_connected, NodeName} | {error, boot_time- out, NodeName} | {error, init_timeout, NodeName} | {error, startup_timeout, NodeName} | {error, not_alive, NodeName} NodeName = atom() Starts an Erlang node with name Node on the local host. See also: start/3 . start(Host, Node) -> Result Types Node = atom() Host = atom() Result = {ok, NodeName} | {error, already_started, NodeName} | {error, started_not_connected, NodeName} | {error, boot_time- out, NodeName} | {error, init_timeout, NodeName} | {error, startup_timeout, NodeName} | {error, not_alive, NodeName} NodeName = atom() Starts an Erlang node with name Node on host Host with the default options. See also: start/3 . start(Host, Node, Options::Opts) -> Result Types Node = atom() Host = atom() Opts = [OptTuples] OptTuples = {username, Username} | {password, Password} | {boot_timeout, BootTimeout} | {init_timeout, InitTimeout} | {startup_timeout, StartupTimeout} | {startup_functions, StartupFunctions} | {monitor_master, Monitor} | {kill_if_fail, Kil- lIfFail} | {erl_flags, ErlangFlags} Username = string() Password = string() BootTimeout = integer() InitTimeout = integer() StartupTimeout = integer() StartupFunctions = [StartupFunctionSpec] StartupFunctionSpec = {Module, Function, Arguments} Module = atom() Function = atom() Arguments = [term] Monitor = bool() KillIfFail = bool() ErlangFlags = string() Result = {ok, NodeName} | {error, already_started, NodeName} | {error, started_not_connected, NodeName} | {error, boot_time- out, NodeName} | {error, init_timeout, NodeName} | {error, startup_timeout, NodeName} | {error, not_alive, NodeName} NodeName = atom() Starts an Erlang node with name Node on host Host as specified by the combination of options in Opts . Options Username and Password will be used to log in onto the remote host Host . Username, if omitted, defaults to the current user name, and password is empty by default. A list of functions specified in the Startup option will be executed after startup of the node. Note that all used modules should be present in the code path on the Host . The timeouts are applied as follows: * BootTimeout - time to start the Erlang node, in seconds. Defaults to 3 seconds. If node does not become pingable within this time, the result {error, boot_timeout, NodeName} is returned; * InitTimeout - time to wait for the node until it calls the internal callback function informing master about successfull startup. Defaults to one second. In case of timed out message the result {error, init_timeout, NodeName} is returned; * StartupTimeout - time to wait intil the node finishes to run the StartupFunctions . Defaults to one second. If this timeout occurs, the result {error, startup_timeout, NodeName} is returned. Option monitor_master specifies, if the slave node should be stopped in case of master node stop. Defaults to false. Option kill_if_fail specifies, if the slave node should be killed in case of a timeout during initialization or startup. Defaults to true. Note that node also may be still alive it the boot timeout occurred, but it will not be killed in this case. Option erlang_flags specifies, which flags will be added to the parameters of the erl executable. Special return values are: * {error, already_started, NodeName} - if the node with the given name is already started on a given host; * {error, started_not_connected, NodeName} - if node is started, but not connected to the master node. * {error, not_alive, NodeName} - if node on which the ct_slave:start/3 is called, is not alive. Note that NodeName is the name of current node in this case. stop(Node) -> Result Types Node = atom() Result = {ok, NodeName} | {error, not_started, NodeName} | {error, not_connected, NodeName} | {error, stop_timeout, NodeName} NodeName = atom() Stops the running Erlang node with name Node on the localhost. stop(Host, Node) -> Result Types Host = atom() Node = atom() Result = {ok, NodeName} | {error, not_started, NodeName} | {error, not_connected, NodeName} | {error, stop_timeout, NodeName} NodeName = atom() Stops the running Erlang node with name Node on host Host . AUTHORS
<> common_test 1.5.3 ct_slave(3erl)
All times are GMT -4. The time now is 06:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy