tags:

views:

40

answers:

3

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?

+4  A: 
$ cd /html/wordpress
$ mv * ..
$ cd ..
$ rmdir wordpress

Do you need something more complicated?

Carl Norum
Brilliant, thank you. I was unaware of the wildcard... duh! I am a Unix newbie.
Isaac Hodes
+1  A: 
mv /path/to/html/wordpress/* /path/to/html
rmdir /path/to/html/wordpress

Should work

ABentSpoon
+1  A: 
mv /html/wordpress/* /html
rmdir wordpress
Anthony