Closed8
grep on windows

ripgrep(rg)
scoop install ripgrep
rg "keyword"

GNU grep
scoop install gow
grep -rni "keyword" .
※ 最近版のgrepのバッグで再帰的検索できません。

Select-String
PowerShellのコマンドレットでやる。
Get-ChildItem *.* -Recurse | Select-String "keyword"

findstr
Windows nativeのアプリ(exe)です。
findstr /sin “keyword” *

git grep
gitリポジトリ中であれば、検索できます。
git grep "keyword"

The Silver Searcher(ag)
scoop install ag
ag "keyword"

The Platinum Searcher(pt)
scoop install pt
pt "keyword" .

ugrep
scoop install ugrep
ugrep "keyword"
このスクラップは2023/08/18にクローズされました