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

Re: [PATCH] Change file names in text-base and prop-base

From: Greg Stein <gstein_at_lyra.org>
Date: 2001-11-09 19:27:37 CET

On Thu, Nov 08, 2001 at 01:51:50PM -0500, Kevin Pilch-Bisson wrote:
>...
> Here it is:
>
> #!/bin/sh
>
> SVN_DIRS=`find . -name working_copies -prune -o -name .svn -type d -print`
> for dir in $SVN_DIRS; do
> TEXT_BASE_FILES=`find $dir/text-base -type f -print`
> TMP_TEXT_BASE_FILES=`find $dir/tmp/text-base -type f -print`
> PROP_BASE_FILES=`find $dir/prop-base -type f -print`
> TMP_PROP_BASE_FILES=`find $dir/tmp/prop-base -type f -print`
> for file in $TEXT_BASE_FILES $TMP_TEXT_BASE_FILES; do
> mv $file $file.base-svn
> done
> for file in $PROP_BASE_FILES $TMP_PROP_BASE_FILES; do
> mv $file $file.base-svn
> done
> done

Whoops. Those 'mv' lines should be $file.svn-base

Cheers,
-g

-- 
Greg Stein, http://www.lyra.org/
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Oct 21 14:36:48 2006

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

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