grep in Awk


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting grep in Awk
# 1  
Old 05-12-2008
grep in Awk

Hi
Can i use grep statements in awk

Like the below.

cat /HS_Data_00/tmp/test/name_88_final|awk '{ printf "%s %-50s %s\n",substr($0,1,5),substr($0,12,31), grep -c "string" filename '|sort

This is a requirement. Can you please help?

Regards
Dhana
# 2  
Old 05-12-2008
grep in Awk

Hi All
Can any body help me out.

Regards
Dhana
# 3  
Old 05-12-2008
Bumping your posts is against the rules, and expecting a reply within half an hour is not realistic, especially if your problem is not described in much detail.

awk by nature does a superset of what grep does. Perhaps the following somehow manages to do what you intended it to.

Code:
cat 
awk '/string/ { ++count}
{ printf "%s %-50s %i\n",substr($0,1,5),substr($0,12,31), count }' /HS_Data_00/tmp/test/name_88_final |sort

It's not clear where the filename is supposed to come from; this prints the count of matches on "string" so far in the input. If you need to manipulate two different files, then maybe it's better to separate the two after all. Where is the filename supposed to come from?
# 4  
Old 05-12-2008
grep in Awk

Hi
Sorry about not giving in detail.

here is the actual command that i tried.

cat /HS_Data_00/tmp/test/name_88_final|awk '{ printf "%s %-50s %s \n",substr($0,1,5),substr($0,12,31), `grep -c substr($0,1,11) /HS_Data_00/Dart/Out/sys19/lps/100109.U` }'|sort

Please refer the below command.
grep -c substr($0,1,11) /HS_Data_00/Dart/Out/sys19/lps/100109.U

This file /HS_Data_00/Dart/Out/sys19/lps/100109.U
is a separate file and i need to count the occurences of the substr($0,1,11) in this /HS_Data_00/Dart/Out/sys19/lps/100109.U
Hence i am trying to use grep command.

Please let me know if you need more info.

Regards
Dhana
# 5  
Old 05-12-2008
Quote:
Originally Posted by dhanamurthy
Hi All
Can any body help me out.

Regards
Dhana
You've been given 2 infractions in a single day for 'bumping up' posts.
Pls reread the Rules - they're here to be adhered to!
# 6  
Old 05-12-2008
So you want to count the number of occurrences of substr($0, 1, 11) from the current input line from another file? Your basic approach is not too bad but it's a pretty advanced topic.

Code:
awk '{ ("grep -c " substr($0,1,11) " /HS_Data_00/Dart/Out/sys19/lps/100109.U") | getline u;
  printf "%s %-50s %s \n", substr($0,1,5),substr($0,12,31), u }' /HS_Data_00/tmp/test/name_88_final | sort

The awk getline function allows you to retrieve the output from an external command sort of like backticks in the shell.
# 7  
Old 05-12-2008
grep in Awk

Hi
I tried the solution that you have provided. It works in certain cases and it does'nt work when i process this file

file name = name_6_final

$ cat name_6_final
TYPE 001506GROUND 0704
TYPE 002058MICROWAVE 7285
TYPE 002694REGULAR 7285
TYPE 003584WHOLE 0704
TYPE 018389DRUMSTICK 0704
TYPE 030585GIBLET 0704
TYPE 030586BREAST-BONELESS 0704
TYPE 030587BREAST-SPLIT 0704
TYPE 030588BREAST-TENDERLOIN 0704
TYPE 030589BREAST-WHOLE 0704
TYPE 030590THIGH 0704
TYPE 030591THIGH-BONELESS 0704
TYPE 030592WHOLE LEG 0704
TYPE 030593WING 0704
TYPE 030594OTHER TURKEY 0704
TYPE 037021GROUND TURKEY PATTIES 0704
TYPE 037022CUT UP MIXED PARTS 0704
TYPE 037076OTHER HAM 0738
TYPE 037080HALF-PORTION 0738
TYPE 037081HAM STEAKS-CENTER CUT 0738
TYPE 037082WHOLE HAM 0738


When i debugged as i tried the below
$ awk '{ ("grep -c "substr($0,1,11)" /HS_Data_00/Dart/Out/sys19/lps/100109.U") | getline u }' name_6_final
grep: can't open 001506
grep: can't open 002058
grep: can't open 002694
grep: can't open 003584
grep: can't open 018389
grep: can't open 030585
grep: can't open 030586
grep: can't open 030587
grep: can't open 030588
grep: can't open 030589
grep: can't open 030590
grep: can't open 030591
grep: can't open 030592
grep: can't open 030593
grep: can't open 030594
grep: can't open 037021
grep: can't open 037022
grep: can't open 037076
grep: can't open 037080
grep: can't open 037081
grep: can't open 037082

Got the above error.

Regards
Dhana
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Using awk instead of grep -f

Hi Guys. I am trying to count occurances of patterns(occurance can be anywhere in file2) from file1 in file2. file1 is god god pod rod file2 is iamgod iamgod podrod 123rod456 output should be god 2 god 2 pod 1 rod 2 I am not good at awk but i figured out this command.it doesnt... (7 Replies)
Discussion started by: ahfze
7 Replies

2. Shell Programming and Scripting

sed and awk usage to grep a pattern 1 and with reference to this grep a pattern 2 and pattern 3

Hi , I have a file where i have modifed certain things compared to original file . The difference of the original file and modified file is as follows. # diff mir_lex.c.modified mir_lex.c.orig 3209c3209 < if(yy_current_buffer -> yy_is_our_buffer == 0) { --- >... (5 Replies)
Discussion started by: breezevinay
5 Replies

3. UNIX for Dummies Questions & Answers

Piping grep into awk, read the next line using grep

Hi, I have a number of files containing the information below. """"" Fundallinfo 6.3950 14.9715 14.0482 """"" I would like to grep for Fundallinfo and use it to read the next line? I ideally would like to read the three numbers that follow in the next line and... (2 Replies)
Discussion started by: Paul Moghadam
2 Replies

4. Shell Programming and Scripting

awk / grep

how do I change this line to use the awk command RC19=`grep -c "Broken pipe" $FTP_OUT` Code tags please (5 Replies)
Discussion started by: mbmarciniak
5 Replies

5. Shell Programming and Scripting

AWK/GREP: grep only lines starting with integer

I have an input file 12.4 1.72849432773174e+01 -7.74784188610632e+01 12.5 9.59432114416327e-01 -7.87018212757537e+01 15.6 5.20139995965960e-01 -5.61612429666624e+01 29.3 3.76696387248366e+00 -7.42896194101892e+01 32.1 1.86899877018077e+01 -7.56508762501408e+01 35 6.98857157014640e+00... (2 Replies)
Discussion started by: chrisjorg
2 Replies

6. Shell Programming and Scripting

Read content between xml tags with awk, grep, awk or what ever...

Hello, I trying to extract text that is surrounded by xml-tags. I tried this cat tst.xml | egrep "<SERVER>.*</SERVER>" |sed -e "s/<SERVER>\(.*\)<\/SERVER>/\1/"|tr "|" " " which works perfect, if the start-tag and the end-tag are in the same line, e.g.: <tag1>Hello Linux-Users</tag1> ... (5 Replies)
Discussion started by: Sebi0815
5 Replies

7. Shell Programming and Scripting

Is it better to grep and pipe to awk, or to seach with awk itself

This may just be a lack of experience talking, but I always assumed that when possible it was better to use a commands built in abilities rather than to pipe to a bunch of commands. I wrote a (very simple) script a while back that was meant to pull out a certain error code, and report back what... (4 Replies)
Discussion started by: DeCoTwc
4 Replies

8. Shell Programming and Scripting

MEM=`ps v $PPID| grep -i db2 | grep -v grep| awk '{ if ( $7 ~ " " ) { print 0 } else

Hi Guys, I need to set the value of $7 to zero in case $7 is NULL. I've tried the below command but doesn't work. Any ideas. thanks guys. MEM=`ps v $PPID| grep -i db2 | grep -v grep| awk '{ if ( $7 ~ " " ) { print 0 } else { print $7}}' ` Harby. (4 Replies)
Discussion started by: hariza
4 Replies

9. UNIX for Dummies Questions & Answers

grep and awk

I have grep MHz psrinfo-v.out it gives The i386 processor operates at 3000 MHz, The i386 processor operates at 3000 MHz, The i386 processor operates at 3000 MHz, The i386 processor operates at 3000 MHz, how to get instead of these 4 lines: CPU speed: 3000 MHz i.e. CPU... (3 Replies)
Discussion started by: melanie_pfefer
3 Replies

10. Shell Programming and Scripting

[grep awk cut] > awk

Hi, I'm very new to scripting. grep $s $filename | awk '{print $2}' | cut -c 1-8 How can I optimize this using a single awk? I tried: awk '/$s/ {print $2}' $filename | cut -c 1-8 However didn't work, I think the awk is not recognizing $s and the verbal is something else. (6 Replies)
Discussion started by: firdousamir
6 Replies
Login or Register to Ask a Question