We have a bulk repository for code contain thousands of folder and sub folder, i want to search under this repositor with file name or with some word.
Root f
If the file is in your working copy, then if you are using svn 1.5:
svn list --depth infinity | grep
or an earlier version of svn:
find . -name -not -path '*.svn*'
If you need to find the file in history (deleted or moved):
svn log -v | less
and search for it with:
\