Is there an easy Windows equivalent to this search in Bash?

If I type

locate something | grep "someEnding$"

in a shell it will take a second to give me a list of every file on my system where the absolute path contains 'something' and ends 'someEnding'.

If there a way to do this in Windows? Preferably quickly, but OK if not.


Solution 1:

I think in Powershell it will be:

Get-ChildItem -Recurse *something* | Select-String "someEnding$"