Problem with grep from pattern file with if


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Problem with grep from pattern file with if
# 1  
Old 06-16-2012
Data Problem with grep from pattern file with if

I have two sets of data

accept.txt is the list of 50 words
Code:
Tom
Anne
James
...

and I have a file01.txt which has the frequency of words which I got it using
Code:
cat main.file | tr -d '[:punct:]' | tr ' ' '\n' | tr 'A-Z' 'a-z' | sort | uniq -c | sort -n -r > file01.txt

so my file now looks like this
Code:
155 the
100 a
55  this
34  Anne
5   James

I need the output to look like this
Code:
0
34
5

I tried using grep but dont know how to replace things with 0 and just print one column
Code:
for name in `cat accept.txt ` 
do 
grep $name file01.txt;
done

I have to do this for 20 files in the same folder and would like to eventually print it as

file01 file 02 .... file20
Tom 0 54 .... 0
Anne 34 0 ... 43
James 0 43 .... 12

can someone please help me?
Thank you in advance for your time
# 2  
Old 06-17-2012
Try this script:

Code:
#!/bin/ksh

ls file* | sort | tr '\n' '\t' | sed 's/^/\t/g'
echo ""

for name in `cat accept.txt`
do
printf "${name}"
  for i_file in `ls file* | sort`
  do  
    count=`grep -c "${name}" "${i_file}"`
    printf "\t${count}"
  done
echo""
done

# 3  
Old 09-03-2012
Thanks for the help... I find a solution for if but yours look much more pro Smilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. 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

2. Shell Programming and Scripting

Grep a file pattern in another

Hi I'm new to the forum, so I'd apologize for any error in the format of the post. I'm trying to find a file content in another one using: grep -w -f file1 file2 file1 GJA7 TSC file 2 GJC1 GJA7 TSC1 TSC (11 Replies)
Discussion started by: flyfisherman
11 Replies

3. Shell Programming and Scripting

script to grep a pattern from file compare contents with another file and replace

Hi All, Need help on this I have 2 files one file file1 which has several entries as : define service{ hostgroup_name !host1,!host5,!host6,.* service_description check_nrpe } define service{ hostgroup_name !host2,!host4,!host6,.* service_description check_opt } another... (2 Replies)
Discussion started by: namitai
2 Replies

4. Shell Programming and Scripting

Issue with grep using pattern from file

I'm trying to read in a list of text strings from a file, then use that string as a grep pattern. I am getting partial matching, which I believe stems from the linefeed at the end of each line of text. What I have now is: while read line; do echo $line; grep -i $line... (1 Reply)
Discussion started by: rogowar
1 Replies

5. Shell Programming and Scripting

Grep a pattern given in one file at other file and display its corresponding contents as output.

***************************************** Right now i have this current system. I have two files say xxx.txt and yyy.txt. xxx.txt is with list of patterns within double quotes. Eg. "this is the line1" "this is the line2" The yyy.txt with lot of lines. eg: "This is a test message which... (7 Replies)
Discussion started by: abinash
7 Replies

6. Shell Programming and Scripting

Grep pattern from different file and display if it exists in the required file

Hi, I have two files say xxx.txt and yyy.txt. xxx.txt is with list of patterns within double quotes. Eg. "this is the line1" "this is the line2" The yyy.txt with lot of lines. eg: "This is a test message which contains rubbish information just to fill the page which is of no use. this is... (3 Replies)
Discussion started by: abinash
3 Replies

7. Shell Programming and Scripting

Want to grep exact pattern from file

Contents of my file is: DI DI DIR PHI I want to extract only DI. I am using below command grep -w DI <file> but it is also extracting DI. Can i use any other command to extract exact pattern where '[' does not have special meaning (4 Replies)
Discussion started by: nehashine
4 Replies

8. Shell Programming and Scripting

grep pattern in a file not working. please help...

Guys, I have my.mrk file as follows: rs112 rs105 rs154 rs136 ... and my.map file: 7 rs112 0.59 7 rs188 0.63 7 rs105 0.77 7 rs113 0.84 7 rs154 0.92 7 rs111 1.46 7 rs095 1.71 (3 Replies)
Discussion started by: Zoho
3 Replies

9. UNIX for Dummies Questions & Answers

Grep a pattern in gz file

I have a set of .gz files. I need to grep a pattern and need to find out the file in which that pattern occurs. zgrep in not available in my server.Any other options available for searching a pattern without unzipping the .gz files. (2 Replies)
Discussion started by: rprajendran
2 Replies

10. UNIX for Dummies Questions & Answers

Grep pattern problem

Hello, I need to grep the following line: Postponed keyboard-interactive but I do not need to grep this line Postponed keyboard-interactive for illegal user How can I tell grep to do that? (1 Reply)
Discussion started by: mojoman
1 Replies
Login or Register to Ask a Question