svn mv dir/* ./
Liquid error: undefined method `login' for nil:NilClass : December 15th, 2005
That's not going to work as [Subversion](http://subversion.org/ "Subversion homepage") can only move one thing at a time, be it a folder or a file. The solution is to use your shell:
for I in html/*; do svn mv $I ./; done
1 Response to “svn mv dir/* ./”
Leave a Reply
Remember: escape your underscores \_ and indent code at least 4 spaces or incur the wrath of smartypants.
December 16th, 2005 at 01:10 AM ...or, don't use Subversion ;)