vote up 0 vote down star

Is there any way under linux/terminal to count, how many times the char f occurs in a plain text file?

flag

belongs on superuser – Malfist Oct 21 at 21:00
cupakob are you trying to break sof?!?!?! THIS BELONGS ON SUPERUSER!!! ARE YOU CRAZY??!?!? – IIIIIIIIIIllllIlIlIlIlllllllII Oct 21 at 21:48
Technically this could be considered a sh/bash/etc. programming question, so I think it has validity in either place. – Rob Hruska Oct 21 at 21:51
@Rob Hruska: yes, I also think is bash programming... @abrashka: the answer for your first and second question is "NO"! – cupakob Oct 22 at 7:33

3 Answers

vote up 6 vote down check

How about this:

fgrep -o f <file> | wc -l

Note: Besides much easier to remember/duplicate and customize, this is about three times (sorry, edit! botched the first test) faster than Vereb's answer.

link|flag
that is better than mine – Vereb Oct 21 at 21:41
Nice answer, very simple. – Rob Hruska Oct 21 at 21:42
Yours is pretty cool, though. I had fun reading it and seeing how it worked. – Jefromi Oct 21 at 21:42
vote up 1 vote down

tr -d '\n' < file | sed 's/A/A\n/g' | wc -l

Replacing the two occurrences of "A" with your character, and "file" with your input file.

  • tr -d '\n' < file: removes newlines
  • sed 's/A/A\n/g: adds a newline after every occurrence of "A"
  • wc -l: counts the number of lines

Example:

$ cat file
abcdefgabcdefgababababbbba


1234gabca

$ tr -d '\n' < file | sed 's/a/a\n/g' | wc -l
9
link|flag
vote up 4 vote down

echo $(cat <file> | wc -c) - $(cat <file> | tr -d 'A' | wc -c) | bc

where the A is the character

link|flag
This gets about a third faster if you take out the unnecessary cat s, giving the filename as an argument to wc and tr. – Jefromi Oct 21 at 21:49
unfortunately tr works only on the standard input – Vereb Oct 21 at 21:52
If you realy want to optimize this reads the file just once: echo $(stat -c%s <file>) - $(cat <file> | tr -d 'A' | wc -c) | bc – Vereb Oct 21 at 22:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.