让我们以下面的内容为例
This file is a test file
this file is used to count the word 'file' in this test file
there are multiple occurrences of word file in some lines in this test file
我想计算上述内容中的“文件”一词。
我正在使用下面的 shell 命令
cat $filename | sed "s/_/new/g" | sed "s/$word/_/g" | tr -c -d _ |wc -c
可以还是有更好的想法..?