copy a folder in linux to another location code example
Example 1: copy folder linux command line
cp -R source_dir destination_dir
Example 2: copy directory command in linux
$ cp -R <source_folder_1> <source_folder_2> ... <source_folder_n> <destination_folder>