/ Published in: SVN
This is useful if you do not currently have a trunk/branch structure and would like to move everything into a new trunk.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
cd ~/path/to/old/directory svn mkdir new_directory for file in *; do svn move "$file" new_directory; done