Tuesday, March 10, 2015

Search for a String/ Jar name in SVN repository

Following command can be used :

* search for a specific String
svn list -R [[repository path]] | findstr /s "string to find" > D:\search-results.xml


* search for a specific file
svn list -R <<repository path>> | findstr [[filename]] > D:\search-results.xml