Re: recursively count the words occurrence in the text files

2010-12-31 Thread Andrew McGlashan
Hi, S Mathias wrote: I just can't google for it: I'm searching for a "bash" "one liner" (awk, perl, or anything) for this: there are text files, in several directories: mkdir one mkdir two mkdir three echo "word1 word2 word3" > one/asf.txt echo "word2 word4, word5" > one/asfcxv saf.txt ec

Re: recursively count the words occurrence in the text files

2010-12-31 Thread Camaleón
On Thu, 30 Dec 2010 10:34:59 -0800, S Mathias wrote: > I just can't google for it: (...) Just out of curiosity... why not? :-? http://www.google.com/search?hl=en&complete=0&biw=1280&bih=839&&sa=X&ei=WpodTYuiIImi8QORlqXrBQ&ved=0CBYQvwUoAQ&q=bash+count+word+occurrences+in+files&spell=1 Greetings

Re: recursively count the words occurrence in the text files

2010-12-30 Thread Karl Vogel
>> On Thu, 30 Dec 2010 10:34:59 -0800 (PST), >> S Mathias said: S> ...recursively count the words occurrence in the text files. This assumes words consist of alphanumeric characters only. If that's not the case, you'll need to change the "tr/" line in the script. me% head */* ==>

Re: recursively count the words occurrence in the text files

2010-12-30 Thread Chris Davies
S Mathias wrote: > *recursively count the words occurrence in the text files like: "word1 2" > can anyone point to a howto/link? [re: i just can't google for it :\] What are you actually trying to do? Neither your example nor your description makes any sense, here. Are you perhaps trying to coun

Re: recursively count the words occurrence in the text files

2010-12-30 Thread Wolodja Wentland
On Thu, Dec 30, 2010 at 10:34 -0800, S Mathias wrote: > I just can't google for it: > I'm searching for a "bash" "one liner" (awk, perl, or anything) for this: > there are text files, in several directories: […] How do you define a word? -- .''`. Wolodja Wentland : :' : `. `'`

Re: recursively count the words occurrence in the text files

2010-12-30 Thread Slicky Johnson
On Thu, 30 Dec 2010 10:34:59 -0800 (PST) S Mathias wrote: > I just can't google for it: > > I'm searching for a "bash" "one liner" (awk, perl, or anything) for > this: > > there are text files, in several directories: > > mkdir one > mkdir two > mkdir three > > echo "word1 word2 word3" > on