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
가깝지만 정확히 내가 원했던 것은 아닙니다.
감사!