fugidove

fugidove dominates the universe!

[shell] grep Vs select-string

10 Nov 2021 » shell

Linux Shell

grep -nir "world" .


Window PowerShell

select-string *.txt -pattern "world"
select-string *, */* -pattern "world"