Is there any way under linux/terminal to count, how many times the char f occurs in a plain text file?
|
|
|||||||||
|
|
|
How about this:
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. |
||||||
|
|
|
Replacing the two occurrences of "A" with your character, and "file" with your input file.
Example:
|
||
|
|
|
|
echo $(cat <file> | wc -c) - $(cat <file> | tr -d 'A' | wc -c) | bc where the A is the character |
||||||
|
