Whenever I download WordPress and extract it, all files reside within the wordpress/
subdirectory. To simply copy all those files up one level, I issue the following command:
1 | mv wordpress/* . |
Depending on the permission of your directory, you might have to append sudo
, followed by your password:
1 | sudo mv wordpress/* . |
And that’s it
0 Comments