linux 将文件夹内容复制到根目录的命令

linux command to copy contents of folder to root

我正在使用 ubuntu我想将文件夹内容复制到另一个文件夹中。我使用下面的命令

cp -R /home/user/public_html/domain.com /home/user/public_html/

但是我得到源和目标是相同的错误。

我会使用 tar(因为它会阻止复制)。像

cd /home/user/public_html/domain.com
tar cf - * | (cd .. ; tar xvf -)

或(使用你的cp)喜欢

cd /home/user/public_html/domain.com
cp -R * ../