This seems like a very simple thing, but I'm new to PowerShell and can't figure it out or find an example on the web ...
I am trying to filter a list of strings. This list of strings is the result of the svn list command (a list of Subversion repository files), for example:
svn list -R PATHTOREPOSITORY
I've tried
svn list -R PATHTOREPOSITORY | where {$_ -like "stringtomatch"}
and it does not work. How can i fix this?
source
share