I have the following subversion repository:
trunk
\ folderA
file1
file2
file3
I want to move everything from folderA to a subfolder, like so
trunk
\ folderA
\ folderB
file1
file2
file3
Is there an easy way to do this with a single command?
EDIT I should have specified that I was looking for a way to do it using a wildcard. Something along the lines of:
mkdir folderB
mv !(folderB) folderB