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.
特定の単語で始まるテキストファイルの行数を数える方法は?
私は使いたくありませsedんwc -l。より良い解決策はありますか?
sed
wc -l
これを試して:-
awk '/^yourwordtofind/{a++}END{print a}' file
grep -c "pattern" <filename>
more例:ファイル内のパターンを検索する場合test.txtは、次のコマンドを実行します。
more
test.txt
grep -c "more" test.txt