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
这很接近但不完全是我想要的。
谢谢!