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 h开发者_如何学运维ave all its subdirectories be under /html/
instead of /html/wordpress/
. How do I do this?
$ cd /html/wordpress
$ mv * ..
$ cd ..
$ rmdir wordpress
Do you need something more complicated?
mv /path/to/html/wordpress/* /path/to/html
rmdir /path/to/html/wordpress
Should work
mv /html/wordpress/* /html
rmdir wordpress
精彩评论