Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
756 views
in Technique[技术] by (71.8m points)

svn - Can you specify filenames using wildcards or regexes in the subversion mv command?

I want to do this so that I can say something like, svn mv *.php php-folder/, but it does not seem to be working. Is it even possible? No mention of it is made on the relevant page in the svn book.

Example output of svn mv *.php php-folder/ :
svn: Client error in parsing arguments

Being able to move a whole file system would be a plus, so if any answers given could try to include that ability, that'd be cool.

Thanks in advance!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

svn move only moves one file at a time. Your best bet is a shell loop. In Bash, try

for f in *.php ; do svn mv $f php-folder/; done

On Windows, that's

for %f in (*.php) do svn mv %f php-folder/

Edit: Starting with Subversion 1.5, svn mv accepts multiple source files, so your original command would work. The shell loop is only needed for svn 1.4.x and earlier. (Of course, the shell loop will still work with 1.5; it just isn't necessary.)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...