how to copy directory in ubuntu server with commands code example
Example 1: copy folder in ubuntu
cp -r /path/to/directory /path/to/location/new-name
Example 2: copy directory command in linux
$ cp -R <source_folder_1> <source_folder_2> ... <source_folder_n> <destination_folder>