Urgent Awk Question


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Urgent Awk Question
# 1  
Old 10-09-2009
Urgent Awk Question

I need to get the lines in a log file matching a particular string, and print out the output to the screen from the point of the match, to the end of the file.

I know this code does it: awk '/regex/,0'

but the string I need to search for inside the log file looks something like this: 09/Oct/2009:13:51

how do I use awk to search for the above string without encountering errors due to the "/" that is in the string itself?

thanks in advance for your help guys.
# 2  
Old 10-09-2009
You have to escape special characters Smilie
Code:
awk '/09\/Oct\/2009:13:51/,0' file

# 3  
Old 10-09-2009
Quote:
Originally Posted by danmero
You have to escape special characters Smilie
Code:
awk '/09\/Oct\/2009:13:51/,0' file


I tried that, but i got an error:

Code:
bash-3.00# 
bash-3.00# awk '/09\/Oct\/2009:13:51/,0' /opt/logs/access
awk: syntax error near line 1
awk: bailing out near line 1
bash-3.00# 
bash-3.00#

Please advise. thanks
# 4  
Old 10-09-2009
Hi.

On Solaris you will.

If you are using Solaris, use /usr/xpg4/bin/awk.
# 5  
Old 10-09-2009
Quote:
Originally Posted by scottn
Hi.

On Solaris you will.

If you are using Solaris, use /usr/xpg4/bin/awk.


thank you so much guys. this works.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Very urgent question please!!!!

I have a file like below. I need from each group of messages only first lines after error. Could you pleasde help me to write a correct program? expected output is like this "Error 126614 in debt instrument header for debt instrument ID 10115537: The rating reason RATING AFFIRMED selected for... (1 Reply)
Discussion started by: digioleg54
1 Replies

2. HP-UX

Make_Recovery Question Urgent Plse Respond

I have a make_recovery tape, if I restore the VG00 volume group using this, will my other volume groups still be ok after the restore(I have 7 data volume groups) I used make_recovery -A to create the tape I have a HP9000 HP-UX 11 An internal disk is failing, the other volume groups are on... (3 Replies)
Discussion started by: rees_a
3 Replies

3. Solaris

MB/P0/F0 urgent question

I have sunfire question and getting the following error message through prtdiag. MB/P0/F0 RS failed 0 rpm What it means? Please help me ASAP. (2 Replies)
Discussion started by: mokkan
2 Replies

4. Shell Programming and Scripting

URGENT grep question

I want to grep "abc" from "logyy". I want not only the instance of "abc" to return, but the line just above it as well (no matter what it is). :) Can some one please assit me to drive on this (2 Replies)
Discussion started by: NIMISH AGARWAL
2 Replies

5. Shell Programming and Scripting

Shell script interview question...help required urgent!!!

hi i have cancelled my previous post (2 Replies)
Discussion started by: choco4202002
2 Replies

6. UNIX for Dummies Questions & Answers

awk help urgent

Hi i am trying to read a line from a file and add the values in a new file eg Input file a1|a2|a3|a4|a5|a6 b1|b2|b3|b4|b5|b6 c1|c2|c3|c4|c5|c6 expected output File one a1|a2|a3 b1|b2|b3 c1|c2|c3 (3 Replies)
Discussion started by: rysh
3 Replies

7. Shell Programming and Scripting

One Last Question about Core Files (distinguish) URGENT

now, what do you define as core files. there are some files outthere with the name perl.core, I-core.png, core.png I mean, are these classified as core files too??? i thought core files are simply files called "core". Please help me out this is urgent (2 Replies)
Discussion started by: TRUEST
2 Replies

8. Shell Programming and Scripting

File Existence Question (Urgent)

G'day all Just wondering if anyone can help me, is it possible, within a Bourne Shell script, to check if a entered file exists? :confused: An example would be (And this is the reason why I'm asking) If I was to write a super-basic backup script, and the user entered a filename, what sort of... (2 Replies)
Discussion started by: Aussie_Bloke
2 Replies
Login or Register to Ask a Question