Folder1/
-fileA.txt
-fileB.txt
-fileC.txt
> mkdir Folder2/
> [copy command]
现在Folder2/
看起来像:
Folder2/
-fileA.txt
-fileB.txt
-fileC.txt
如何做到这一点?我已经尝试过,cp -r Folder1/ Folder2/
但最终得到了:
Folder2/
Folder1/
-fileA.txt
-fileB.txt
-fileC.txt
这很接近,但不完全是我想要的。
谢谢!