SVN command to get multiple files

How to get the total size of different files in different locations on the SVN server.

I have about 100 filenames like "https: \ myprojects.svn.com \ na \ grade1 \ test \ images \ img1.png" "https: \ myprojects.svn.com \ on \ grade2 \ main.html" " Https: \ myprojects.svn.com \ IND \ grade3 \ main.html "...

From the following code, I can get the file size separately,

svn list -v file_name

      

But I want to get the total size of the files ... Is it possible ...? Is there any SVN command available?

+3


source to share


2 answers


svn ls help

Lists each TARGET file and the contents of each TARGET directory as they exist in the repository.



You can propagate unrelated targets as parameters to ls

>svn ls --verbose http://mayorat.ursinecorner.ru:8088/svn/Hello/branches/i18n/Hello.txt http://mayorat.ursinecorner.ru:8088/svn/Hello/branches/Leichtbau-Deutsch/Hello.en.txt http://mayorat.ursinecorner.ru:8088/svn/Hello/trunk/Hello.en.txt
     23 lazybadg           75  17  2010 Hello.txt
     24 lazybadg           76  17  2010 Hello.en.txt
     33 lazybadg           82  28 16:10 Hello.en.txt

      

+4


source


Try with the following code:



svn list --verbose --recursive http://svn/repo/path

      

+2


source







All Articles