Count occurrences of a char in plain text file Ask Question

Count occurrences of a char in plain text file Ask Question

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

ベストアンサー1

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.

おすすめ記事