I'm trying to use a batch-script for renaming many files that are versioned by SVN.
The script I'm using is this one: http://haacked.com/archive/2006/09/20/Batch_SVN_Rename.aspx The only thing I changed were the file-extensions. Instead of *.prc to *.sql I have to rename *.tpl to *.xhtml
The problem I get is that it never jumps out of the subroutine (as far as I can tell). It gets the first filename right, so the output on the command-window is "svn rename someFileName.tpl someFileName.xhtml"
After that I keep getting "svn rename rename.tpl rename.xhtml"
this file doesn't exist and I really don't know batch and don't know how to fix it. Is it the way im using the batch-file? Both methods, calling it within a command-window or just double-clicking it don't work.
It worked once, about a week ago, but I deleted it, because I thought I don't need it anymore, but now I need it again and it doesn't work.
Hope you understand my problem
Edit:
Batchfile:
FOR %%A in (*.tpl) do CALL :Subroutine %%A
GOTO:EOF
:Subroutine
svn rename %~n1.tpl %~n1.xhtml
GOTO:EOF
And the directory contains files like this
catalog_details_teaser.tpl
catalog_details_main.tpl
what I need to do (for many files and projects) is to rename them to
catalog_details_teaser.xhtml
catalog_details_main.xhtml
Solved? Well, I don't know. As of right now, I tried it again (with different fileextensions, but that shouldn't matter) and it worked.
But what could've been the temporary problem? Is it likely that it missed some privileges from Windows (XP) ?
FOR %%A in (*.tpl) do CALL :Subroutine %%A GOTO:EOF :Subroutine svn rename %~n1.tpl %~n1.xhtml GOTO:EOFAs you see, I just edited the file-extensions. Maybe it's because I copied it?! But last time - when it worked - I copied it, too. Same procedure, different result – Zobbl Jan 11 at 11:28