[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Antwort: Re: list of all files when tagging

From: Justus Stadler_external <Justus.Stadler_external_at_de.kspg.com>
Date: Tue, 21 Jul 2009 11:15:17 +0200

I think what Craig ment was not the commands, these should be known by
now;-) but rather if there is an existing scipt (my preference would be in
written pearl or C).

#!/usr/bin/perl -w
$temp = "C:\\somewhere\\temp";
print "Please enter the URL of the repo you would like to list all files
of:\n";
$URL = <STDIN>;
print "\n";
$command = "svn list $URL > $temp\\changed.txt";
!system $command
          or die "The command is incorrect!";

This will do for trunk, branches and tags. It will be some more work to go
into the subfolders but if there is nothing comparable out there, I think
I'll write it.
My first gues is that somebody already did this and probably much better
than I ever could with my three weeks perl crashcourse.

Justus

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=2372868

To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
Received on 2009-07-21 11:16:26 CEST

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.