This seems like a very basic thing to do, but I am new to PowerShell and can\'t figure this out or find an example online...
I am trying to filter a list of strings. Thi
Use:
svn list -R PATHTOREPOSITORY | where {$_ -like "*stringtomatch*"}