Re: SVN scripting
From: David Weintraub <qazwart_at_gmail.com>
 
Date: 2005-07-18 16:56:24 CEST 
You can just get a listing of the changed files by doing this:
     $ svn diff -r $start:$end $url | grep "^Index: "
 Or to remove the Index at the front of the line, use "awk"
     $ svn diff -r $start:$end $url | awk -F: '/^Index: / {print $2}'
 You could also try substituting your own diff command to see what you
 I was thinking that maybe the output of the "update" command could be
 On 7/17/05, Calvin <szguoxz@hotmail.com> wrote:
 -- -- David Weintraub qazwart@gmail.com --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org For additional commands, e-mail: users-help@subversion.tigris.orgReceived on Mon Jul 18 16:59:05 2005  | 
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.