Reputation: 502
I need a way to use svn list command which returns urls for files with specific extensions e.g..jar or .java. something like this if it exists:
svn list https://url-to/extrenal/repo [*.jar]
Upvotes: 1
Views: 673
Reputation: 6526
I suggest you:
-R
option for recursive searchfind
(on Windows) or grep
(on Linux) to filter the resultsI guess you're using Windows because of tag tortoisesvn
.
So here is the command on Windows:
svn list -R https://url-to/extrenal/repo | find ".jar"
Upvotes: 2