I've got a directory (wordpress) in a folder (the main html directory of my website) and I'd like to "unpack" it into the main html directory. That is to say, I'd like to remove the wordpress directory and have all its subdirectories be under /html/ instead of /html/wordpress/. How do I do this?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted
$ cd /html/wordpress
$ mv * ..
$ cd ..
$ rmdir wordpress

Do you need something more complicated?

link|improve this answer
Brilliant, thank you. I was unaware of the wildcard... duh! I am a Unix newbie. – Isaac Hodes Oct 10 '09 at 21:08
feedback
mv /path/to/html/wordpress/* /path/to/html
rmdir /path/to/html/wordpress

Should work

link|improve this answer
feedback
mv /html/wordpress/* /html
rmdir wordpress
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.