Want to terminate command execution when string found in the command output


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Want to terminate command execution when string found in the command output
# 15  
Old 10-19-2012
try using this..


Code:
#!/bin/bash
{
if [ -f ifdesc.out ];
then
`rm ifdesc.out`
fi
exec<ifdesc.csv
while IFS=',' read -r f1 f2
do
result=$(snmpwalk -v 3  -u WANDL_SU -a MD5 -A vfipmpls -x DES -X VfIpMpLs -l authPriv $f1 2>/dev/null|awk -F"[: ]" '$0 ~ F2awk{print $3; exit}' F2awk="$f2")
echo $f1 $f2 $result >> ifdesc.out
done
}

# 16  
Old 10-19-2012
Quote:
Originally Posted by Hanumant.madane
...what I need is put the IP Address in one column and its respective result (interface ifindex) in next column so that it will be very easy to identify which IP have not responded to SNMP query.
If you tell us where to get the IP address then this might be doable. pamu assumed it to be one of your input parameters. If that's true, adapt the awk command like
Code:
awk -F"[: ]" '$0 ~ F2awk{print F1awk, F2awk, $3; exit}' F2awk="$f2" F1awk="$f1"

# 17  
Old 10-19-2012
Quote:
Originally Posted by RudiC
Code:
awk -F"[: ]" '$0 ~ F2awk{print F1awk, F2awk, $3; exit}' F2awk="$f2" F1awk="$f1"

It won't work as per the OP's comment.

Quote:
Originally Posted by Hanumant.madane
In this script..it may be possible that few devices may never give out any result i.e. snmpwalk output in this case it will directly print the next result in series.
# 18  
Old 10-19-2012
Actually, I'm having a difficult time getting what the requestor really needs. If snmpwalk outputs the next device if actually requested device's data are not found, then both approaches will fail unless snmpwalk outputs sth. to compare to the requested device.
Pls post snmpwalk output for success and for failure.
# 19  
Old 10-21-2012
Hi All,

thanks for the reply..actually when I use script given it gives output of only those devices for which snmpwalk works, it is not giving out anything else in the otput file(i.e. devices for which snmpwalk doesn't work..) in general when we do snmpwalk i success we should get either our output and in case of failure it is Response timeout.
..hope this clarifies requirement..
# 20  
Old 10-21-2012
Quote:
Originally Posted by Hanumant.madane
Hi All,

thanks for the reply..actually when I use script given it gives output of only those devices for which snmpwalk works, it is not giving out anything else in the otput file(i.e. devices for which snmpwalk doesn't work..) in general when we do snmpwalk i success we should get either our output and in case of failure it is Response timeout.
..hope this clarifies requirement..
Have you tried my code..?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Insert title as output of command to appended file if no output from command

I am using UNIX to create a script on our system. I have setup my commands to append their output to an outage file. However, some of the commands return no output and so I would like something to take their place. What I need The following command is placed at the prompt: TICLI... (4 Replies)
Discussion started by: jbrass
4 Replies

2. Shell Programming and Scripting

Multiple command execution inside awk command during xml parsing

below is the output xml string from some other command and i will be parsing it using awk cat /tmp/alerts.xml <Alert id="10102" name="APP-DS-ds_ha-140018-componentFailure-S" alertDefinitionId="13982" resourceId="11427" ctime="1359453507621" fixed="false" reason="If Event/Log Level(ANY) and... (2 Replies)
Discussion started by: vivek d r
2 Replies

3. Shell Programming and Scripting

Linux command to output from a string

Hi All, I have a file with name Is there a LINUX command that will help me to output the word after the 9th Underscore(_). ie the output should be DLY in this case. Can anybody pls help me. Thanks much in advance, Freddie (4 Replies)
Discussion started by: dsfreddie
4 Replies

4. Shell Programming and Scripting

When i am trying to execute export command within a shell script it is saying command not found.

I am running the export command within a view to use that value inside my build script. But while executing it it is saying "export command not found" My code is as follows: -------------------------- #!/bin/sh user="test" DIR="/bldtmp/"$user VIEW="test.view1" echo "TMPDIR before export... (4 Replies)
Discussion started by: dchoudhury
4 Replies

5. Shell Programming and Scripting

Command output string manipulation possible in one line?

This has been bothering me for 3 days. $> hostname cepsun64amd And I just want "cepsun", I would normally do h=`hostname`; ${h%%64*} But I am looking for a one-liner just for my own knowledge, because if there is a way to do this, I should know it by now. Anyway, so is this... (2 Replies)
Discussion started by: Ryan.
2 Replies

6. Shell Programming and Scripting

strange behaviour script terminate before complete execution

I'm working on a script to make backup of various folder located on various host using different OS. I got a strange behaviour because the script donět process all lines of a configuration file, the script execute only one loop even the input file have 6 lines: This is the script: #!/bin/bash... (4 Replies)
Discussion started by: |UVI|
4 Replies

7. Shell Programming and Scripting

Terminate initially if error found...

Hi, I have written a shell script which is a combination of 5 scripts into one. We have a Record Claim indicator in the scpt ($rc) with which we can come to an conclusion if the script failed to load the data or if the data loaded successfully. Can any one please help me as to how to... (16 Replies)
Discussion started by: msrahman
16 Replies

8. Shell Programming and Scripting

grep only a string on command output

How can I grep exactly a string that has .,/ characters using grep? Example: I want to grep ONLY string1 and not string1.more or string1.more.evenmore #lsauth ALL|grep 'string1' All output: string1 <--- This is the only I want. string1.more string1.evenmore. more.string1... (4 Replies)
Discussion started by: iga3725
4 Replies

9. UNIX for Dummies Questions & Answers

Command display output on console and simultaneously save the command and its output

Hi folks, Please advise which command/command line shall I run; 1) to display the command and its output on console 2) simultaneous to save the command and its output on a file I tried tee command as follows; $ ps aux | grep mysql | tee /path/to/output.txt It displayed the... (7 Replies)
Discussion started by: satimis
7 Replies

10. Programming

command to terminate

hi all how to terminate command eecution process. can you please show me the way thank you (2 Replies)
Discussion started by: munna_dude
2 Replies
Login or Register to Ask a Question