Number of word occurences in a file?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Number of word occurences in a file?
# 1  
Old 03-03-2012
Number of word occurences in a file?

Hello world,
Can anybody tell me how to count how many times does a word repeat in a file? There have been many threads on this but they all are heavy loads of Scripting for a starter like me. Smilie
So, I sat down today and after some hours of reading man pages, I found a simple one-line execution. But, I cannot paste this in any threads as they are all closed!
(Can the forum staff please let me know why threads are closed?? I really don't know).

Your buddy,
Satheesh

---------- Post updated at 09:17 AM ---------- Previous update was at 09:15 AM ----------

The reason I started this thread is either someone newbie benefits or I can be corrected if I went wrong somewhere.
# 2  
Old 03-03-2012
Code:
perl -lne '$i++ while(/\bWORD\b/g);END{print $i}' inputfile

# 3  
Old 03-03-2012
@satish51392111

You can post it here Smilie

Threads are automatically closed, if not posted in, after a period of time (I think 6 months, but can't find the discussion thread we had on the subject Smilie)
# 4  
Old 03-03-2012
I'm very much new to *nix and so I posted it in this Forum-for-dummies. So, no scripting please. These one line scripts are in all the threads I went through earlier.

Also, why are the threads closed?
# 5  
Old 03-03-2012
Quote:
Originally Posted by satish51392111
I'm very much new to *nix and so I posted it in this Forum-for-dummies. So, no scripting please. These one line scripts are in all the threads I went through earlier.

Also, why are the threads closed?
We close inactive threads because they are inactive.

If you want to start a new thread on a similar subject, you can put a link to the old, closed thread.

You really should be asking these questions in the support forum, not in the technical areas.
# 6  
Old 03-03-2012
Ok, got it. I'll next time.
Back to my question please.. any simple suggestions?
# 7  
Old 03-03-2012
Quote:
Originally Posted by satish51392111
I cannot paste this in any threads as they are closed ....
Nonsense... you can cut and paste from any thread, closed or not.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Count occurences of the word without it repeating

Hi, I would like to count the number of ALA occurences without having them to be repeated. In the script I have written now it has 40 repetitions of ALA but it has to be 8. ALA is chosen as one of the 20 values it can have when the script asks for the input of AAA, which for this example is chosen... (7 Replies)
Discussion started by: Aurimas
7 Replies

2. Shell Programming and Scripting

Number of Consecutive Occurences

:b: Hi Folks, I have a requirement to find the number of consecutive occurences based on month. Here is the below sample of my requirement. I have say four columns CARUSERNAME BRAND_CODE MONTH YEAR Below is sample Data John|C|JAN|2013 Tim|C|FEB|2013 Tom|C|Mar|2013 Ron|C|Apr|2013... (4 Replies)
Discussion started by: dinesh1985
4 Replies

3. Shell Programming and Scripting

Sort the file based on number of occurences

I have a file (input) I want to sort the file based on the number of times a pattern in the first column occurs for example grapes occurs 4 times in combination with other patterns so i want it to be first like shown in the output file. then apple ocuurs thrice so it occupies second position and so... (7 Replies)
Discussion started by: anurupa777
7 Replies

4. UNIX for Dummies Questions & Answers

Count number of occurences of a word

I want to count the number of occurences of say "200" in a file but that file also contains various stuff including dtaes like 2007 or smtg like 200.1 so count i am getting by doing grep -c "word" file is wrong Please help!!!!! (8 Replies)
Discussion started by: shikhakaul
8 Replies

5. Shell Programming and Scripting

counting the number of occurences

say i've got a text file with >10million sequences: ssss ssss tttttt uuuuuu uuuuuu uuuuuu ... I'd like to convert the file so that the output will report the number of occurence right by each sequence: 2 ssss 2 ssss 1 tttttt 3 uuuuuu 3 uuuuuu 3 uuuuuu .... (3 Replies)
Discussion started by: johjoh
3 Replies

6. UNIX for Dummies Questions & Answers

How to count the occurences of a specific word in a file in bash shell

Hello, I want to count the occurences of a specific word in a .txt file in bash shell. Can somebody help me pleaze?? Thanks!!! (2 Replies)
Discussion started by: mskart
2 Replies

7. Shell Programming and Scripting

no of occurences of q word

hi I hace a string "abc,def,ghi,abc,def ,ghi,abc,def,ghi,abc,def ,ghi,abc" i replaced commas with spaces, now i want to calculate nof occurences of "abc" word. thanks in advance Satya (6 Replies)
Discussion started by: Satyak
6 Replies

8. Web Development

How to find all occurences of word?

Hi, For example lets consider i have word like this:cell I have some text that is stored in table. These are few sentences. TRAP also regulates translation of trpE by promoting formation of an cell. In addition initiation of pabA, trpP and ycbK by directly blocking cells. I... (0 Replies)
Discussion started by: vanitham
0 Replies

9. UNIX for Dummies Questions & Answers

Counting number of occurences

Hi All, I have to count the number of occurences of the character " ; " in a given line. I had used the following awk command to achieve the same echo $KOP.dat|awk '{split($1,my,";"); for(i in my)c++ }END{print c-1}' My file KOP.dat had the following data ... (1 Reply)
Discussion started by: kingofprussia
1 Replies

10. Shell Programming and Scripting

number of occurences of a string

hi, I have a file where i need to count the occurences of a string ex) 'welcome to unix forum'. can anybody help me out (12 Replies)
Discussion started by: siddu_chittari
12 Replies
Login or Register to Ask a Question