recursive directory svn move shell script
Posted
by yaya3
on Stack Overflow
See other posts from Stack Overflow
or by yaya3
Published on 2010-06-15T14:31:55Z
Indexed on
2010/06/15
14:42 UTC
Read the original article
Hit count: 229
I want to rename all nested directories named "foo" to "bar" - I've tried the following with no joy:
find */ -name 'foo' | xargs svn move {} 'bar' \;
Thanks
© Stack Overflow or respective owner