egrep - Help Required


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting egrep - Help Required
# 15  
Old 05-19-2010
Hi,
I guess Regular expressions are just not working. I saved the out out in a temp file and tried this for drilling down the issue :-

This works now. Thanks to curleb for pointing out the regex

Code:
egrep "Status: *([0]+)" without a "\b"

Code:
egrep "Status: *([0]+)" tempFile.txt
result=$?
if [ $result -ne 0 ]; then
   echo "Failed"
else
   echo "Succeeded"
fi

But, the other way i.e. taking using a variable instead of a file does not work.


Any idea ?
# 16  
Old 05-19-2010
I'm to hedge and say you've only resolved an immediate concern...you might not have resolved your real concern. You never responded on the 'huge data' question, so I'm guessing you might still see the issue in another spot. In fact, your sample if..then statement appears to be a mock-up instead of a real-life condition. What is it you're trying to accomplish? Are you trying to capture SQL return codes or something...?

You're only going to see a variable work if you've piped something into it; $? is the same concept, but on the shell's level instead of the process. Whatever allows you to redirect into tempfile.txt should also allow you to simply pipe this same result into your egrep statement, and thereby get $return to match your goal.

HTH
# 17  
Old 05-19-2010
Hi,
It is a network response over TCP/IP channel. So, if the transfer of data fails, I get some response. In that response, there are Status codes. So, to check for success, I need to grep on that status code and then show an error dialog to the user.

So, piping variables was not working. Hence, I decided to dump the response in a file and then do the egrep. That worked !
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Egrep

Hi I am trying to run CMD that combining EGREP and PERL in multiple files cat *07:00.22-12-13.txt | egrep" NAME| perl -ne 'print if /^sid9/ .. /^!/' " I need the see the NAME and the text from sid9 to ! how can I use the EGERP in parallel to the PERL ? This is one file Qqq... (2 Replies)
Discussion started by: sharong
2 Replies

2. Shell Programming and Scripting

egrep help required to find pattern

Hi All, Can some one please help me how to grep the comments from "oracle" & "sybase" code. I would like to grep below type of pattern. -- /* */ Please help. (6 Replies)
Discussion started by: gr8_usk
6 Replies

3. Shell Programming and Scripting

egrep

i am new to bash or scripting period and had a question about how I could use the egrep command (or if there should be another command to use) to accomplish the following goal. Need to look through the ndm files labeled as S20090709.999 and if I cannot find a specific date then search the archived... (5 Replies)
Discussion started by: freddie999
5 Replies

4. Shell Programming and Scripting

Getting required fields from a test file in required fromat in unix

My data is something like shown below. date1 date2 aaa bbbb ccccc date3 date4 dddd eeeeeee ffffffffff ggggg hh I want the output like this date1date2 aaa eeeeee I serached in the forum but didn't find the exact matching solution. Please help. (7 Replies)
Discussion started by: rdhanek
7 Replies

5. UNIX for Dummies Questions & Answers

help on egrep

HI, I have two files filea, fileeb filea z283110z67 xx65686377 xx654681zz xx652836xx xx653881zz xx65480z11 xx654z5466 xx65510000 xx65670000 xx656z0000 xx656z1822 fileb (3 Replies)
Discussion started by: krao
3 Replies

6. UNIX for Dummies Questions & Answers

search ")" with egrep - egrep: syntax error

Hi Guys, we have a shell script which basically query the Database which retrieves huge data and use the data with "egrep" . Now there is some data which contains characters like "abc)" and the same is used like below : "egrep (.+\|GDPRAB16\|GDPR/11702 96 abc)\|$ temp.txt" now while... (7 Replies)
Discussion started by: sagarjani
7 Replies

7. UNIX for Dummies Questions & Answers

Egrep

what does "egrep """ do ?? Can anyone explain this with an example .. please .. (2 Replies)
Discussion started by: risshanth
2 Replies

8. Shell Programming and Scripting

egrep

Hi, I don't understand what is the correct way of writing: egrep -l '{$min,$max} $pattern' $filename I tryed to search on google how to wtrite {$min, $max}, but I don't have success (7 Replies)
Discussion started by: DNAx86
7 Replies

9. UNIX for Dummies Questions & Answers

Egrep cheat sheet anywhere? Looking for meaning of egrep -c

Hi I've been searching google and have not found what egrep -c means. Does anyone know where I can get a cheat sheet or what that -c means? thanks, Linda (2 Replies)
Discussion started by: leelm
2 Replies

10. UNIX for Dummies Questions & Answers

Egrep Help

I'm writing a small script thats purpose is to validate a single command line argument to make sure it is an integer. Also acceptable are a leading "+" or "-", but no more than one. Example: "5" "-2" "+4" are all valid If its invalid I simply print out a message saying so, otherwise I... (2 Replies)
Discussion started by: FuzzyNips
2 Replies
Login or Register to Ask a Question