copy folder in ubuntu shell code example
Example 1: copy folder ubuntu
$ cp -r /source_directory /destination_directory
Example 2: create and copy folder in ubuntu
$ cp -rv /source_directory /destination_directory
# r = copy directories recursively
# v = explain what is being done