linux copy dir to another directory code example
Example 1: copy directory command in linux
$ cp -R <source_folder> <destination_folder>
Example 2: linux copy folder with files
cp -R path_to_source path_to_destination/
$ cp -R <source_folder> <destination_folder>
cp -R path_to_source path_to_destination/