please every body help me .... i am going to explain my problem and i hope if anyone know the answer support me by it. i want to konw the list directory entries in the svn repository ...i konw "list" command give me the result but i have many many repository ...so this is unlogical method .... so i need method to find the entries directory for more than one svn repository at the same time

link|improve this question

Would it be possible to provide some example data? I think you might get better answers if you could provide a couple of example repository structures and the expected output you'd want from traversing them. – mlschechter Sep 19 '10 at 0:39
ok ... see the following example.... i do the following :- execute the this command to find the repository :- "sudo find / -type f -name fs-type -print " the following result appear :- "/var/lib/svn/repos/b1me/products/payone/impl/VJ/resources /var/lib/svn/repos/b1me/products/payone/impl/JKB/code/iris" and more maybe 500 repository now i want to show content of each repository for Followed in the next comment >> – Mohammad AL-Rawabdeh Sep 19 '10 at 6:20
now i want to find the content of each repository for example :-"/var/lib/svn/repos/b1me/products/payone/generic/code/core" so i execute this command :- "svn list svn+ssh://svn.sts.com.jo/var/lib/svn/repos/b1me/products/payone/generic/code/cor‌​e" but i have maybe 500 repository it is very complex to execute it for each one ...Taking into account each one require password – Mohammad AL-Rawabdeh Sep 19 '10 at 6:21
note :- someone Suggest to me to write bash – Mohammad AL-Rawabdeh Sep 19 '10 at 6:22
Do not go around asking the same question over and over again: serverfault.com/questions/181712/… and serverfault.com/questions/181744/… – ptman Sep 19 '10 at 15:17
show 1 more comment
feedback

1 Answer

up vote 0 down vote accepted

SVN by itself doesn't have any concept of passwords, it's only when you reference an SVN repository through something like Apache (mod_authz) that you are prompted for a username and password. So if you can execute the sudo command then you can also execute this command

svn list --recursive file:///var/lib/svn/repos/b1me/products/payone/generic/code/core
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.