how do i move the contents of one folder to another
im trying to move the contents of one folder to another INCLUDING ALL subfolders under that directory. i tried the following command:given: im in /home2/account-one/public_html
cp * /home2/account-two/public_html
i got these errors:
[/home2/account-one/public_html]# cp * /home2/account-two/public_html
cp: omitting directory `dir1'
cp: omitting directory `dir2'
cp: omitting directory `cgi-bin'
cp: omitting directory `dir3'

why does this have to be so complicated?