Folder1/
    -fileA.txt
    -fileB.txt
    -fileC.txt
> mkdir Folder2/
> [copy command]
Và bây giờ Folder2/trông giống như:
Folder2/
    -fileA.txt
    -fileB.txt
    -fileC.txt   
Làm thế nào để làm cho điều này xảy ra? Tôi đã thử cp -r Folder1/ Folder2/nhưng cuối cùng vẫn gặp phải:
Folder2/
    Folder1/
        -fileA.txt
        -fileB.txt
        -fileC.txt
Đó là gần nhưng không chính xác những gì tôi muốn.
Cảm ơn!