Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ファイルの一部、たとえば 21 行目から 234 行目までの単語 'asd' の出現回数を調べたいとします。VIM ではどのようにすればよいでしょうか?
これを数えてみてください :21,234s/asd//gn
:21,234s/asd//gn
編集
あなたのvimはとても古いので、grepingを試して次のように数えてください
sed -n 21,234p filename | grep -o asd | wc -l